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 (16 lines) | stat: -rw-r--r-- 244 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
10 REM PC-BASIC test 
20 REM
30 PRINT 1
40 PRINT 2
50 PRINT 3
60 PRINT 4
70 PRINT 5
80 PRINT 6
90 PRINT 7
100 ON ERROR GOTO 1000
110 END
1000 OPEN "OUTPUT.TXT" FOR APPEND AS 1
1010 PRINT#1, ERR, ERL
1020 CLOSE
1030 RESUME NEXT