RosettaCodeData/Task/Input-loop/FreeBASIC/input-loop.freebasic
2016-12-05 23:44:36 +01:00

14 lines
223 B
Text

' FB 1.05.0 Win64
Dim line_ As String ' line is a keyword
Open "input.txt" For Input As #1
While Not Eof(1)
Input #1, line_
Print line_ ' echo to the console
Wend
Close #1
Print
Print "Press any key to quit"
Sleep