RosettaCodeData/Task/Topic-variable/Ruby/topic-variable-1.rb
2023-07-01 13:44:08 -04:00

7 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