RosettaCodeData/Task/Topic-variable/Ruby/topic-variable-1.rb

8 lines
174 B
Ruby

while DATA.gets # assigns to $_ (local scope)
print # If no arguments are given, prints $_
end
__END__
This is line one
This is line two
This is line three