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

8 lines
174 B
Ruby
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
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