Input/Output for lines of text: Difference between revisions

Content added Content deleted
m (Thundergnat moved page Input/Output for Lines of Text to Input/Output for lines of text: Follow normal task title capitalization policy)
(Added 11l)
Line 30: Line 30:
*   [[File/Input and Output]]
*   [[File/Input and Output]]
<br><br>
<br><br>

=={{header|11l}}==
{{trans|Python}}

<lang 11l>F do_stuff(words)
print(words)

V linecount = Int(input())
L 1..linecount
V line = input()
do_stuff(line)</lang>


=={{header|ALGOL 68}}==
=={{header|ALGOL 68}}==