mirror of
https://github.com/ruby/ruby.git
synced 2026-01-27 12:34:21 +00:00
24 lines
418 B
Plaintext
24 lines
418 B
Plaintext
while true; 1; end
|
|
|
|
1 while true
|
|
|
|
tap { break while true }
|
|
|
|
tap { next while true }
|
|
|
|
return while true
|
|
|
|
foo :a, :b while bar?
|
|
|
|
tap { while def self.foo a = tap do end; end; break; end }
|
|
|
|
tap { while class Foo a = tap do end; end; break; end }
|
|
|
|
tap { while class << self; tap do end; end; break; end }
|
|
|
|
tap { while class << self; a = tap do end; end; break; end }
|
|
|
|
while def foo = bar do end; end
|
|
|
|
foo while bar in baz
|