Read a specific line from a file: Difference between revisions

Line 284:
close f
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}}===
54

edits