8 lines
174 B
Ruby
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
|