Read a specific line from a file: Difference between revisions

Content added Content deleted
Line 284: Line 284:
close f
close f
end</lang>
end</lang>

==={{header|OxygenBasic}}===
library OOP
<lang>
uses stringutil
new Textarray t
t.load "t.txt"
print t.line 7
' print t.lineCount
del t
</lang>


==={{header|QBasic}}===
==={{header|QBasic}}===