File: width.bas

package info (click to toggle)
bwbasic 2.20pl2-13
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,764 kB
  • sloc: ansic: 21,002; makefile: 80
file content (5 lines) | stat: -rw-r--r-- 206 bytes parent folder | download | duplicates (12)
1
2
3
4
5
10 open "o", #1, "data.tmp"
20 width #1, 35
30 print #1, "123456789012345678901234567890123456789012345678901234567890"
40 close #1
50 print "Check file <data.tmp> to see if the printing wrapped at col 35"