Jump to content

Print itself: Difference between revisions

Line 74:
call lineout , sourceline(j)
end /*j*/ /*stick a fork in it, we're all done. */</lang><br><br>
 
=={{header|Ring}}==
<lang ring>
load "stdlib.ring"
 
fileName = filename()
fp = fopen(fileName,"r")
while not feof(fp)
see Readline(fp)
end
fclose(fp)
</lang>
{{out}}
<pre>
load "stdlib.ring"
 
fileName = filename()
fp = fopen(fileName,"r")
while not feof(fp)
see Readline(fp)
end
fclose(fp)
</pre>
 
=={{header|Wren}}==
2,468

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.