Jump to content

Input/Output for lines of text: Difference between revisions

m
no edit summary
(add →‎Free Pascal: implementation [allegedly inserting external links])
mNo edit summary
Line 396:
for i = 1, numLines do table.insert(lineTable, io.read()) end
show(lineTable)</lang>
 
=={header|Nanoquery}}==
<lang Nanoquery>// get how many lines the user wants
amount = int(input())
 
// loop through and get lines
lines = {}
for i in range(1, amount)
lines.append(input())
end
 
// output the lines that the user entered
println
for line in lines
println line
end</lang>
{{out}}
<pre>3
this is a test
the program will read three lines from the console
this is the third line
 
this is a test
the program will read three lines from the console
this is the third line</pre>
 
=={{header|Objeck}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.