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 (6 lines) | stat: -rw-r--r-- 147 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
10 FOR I=1 TO 3
20   OPEN "DATA"+CHR$(48+I) FOR RANDOM AS I
30   FIELD#I, 128 AS A$(I)
40   LSET A$(I) = "test" + STR$(I)
50   PUT#I
60 NEXT