File: TEST.BAS

package info (click to toggle)
pcbasic 2.0.7-8
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 35,416 kB
  • sloc: python: 28,411; sh: 103; makefile: 10
file content (10 lines) | stat: -rw-r--r-- 209 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
10 REM PC-BASIC test 
20 REM LINE INPUT on long lines
30 open "input.txt" for input as 1
40 open "output.txt" for output as 2
45 WHILE NOT EOF(1)
50 LINE INPUT#1, a$
60 WRITE#2, a$
70 WEND
80 CLOSE