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 (14 lines) | stat: -rw-r--r-- 399 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
1 ' test PRINTing a line feed character and check it doesn't create a continuing wrapped line
10 WIDTH 40: CLS: KEY OFF
20 PRINT "11111" CHR$(10) "22222"
999 END
1000 ' dump screen with RUN 1000
1010 DEF SEG=&HB800
1020 OPEN "output.txt" FOR OUTPUT AS 1
1030 FOR Y = 0 TO 6
1040 FOR X = 0 TO 39
1050 PRINT #1, CHR$(PEEK(2*(Y*40+X)));
1060 NEXT
1065 PRINT #1, ""
1070 NEXT
1080 CLOSE 1