RosettaCodeData/Task/Input-loop/True-BASIC/input-loop.basic
2023-07-01 13:44:08 -04:00

9 lines
156 B
Text

OPEN #1: NAME "test.txt", ACCESS INPUT
DO
LINE INPUT #1: linea$
PRINT linea$ ! echo to the console
LOOP UNTIL END #1
CLOSE #1
END