File: width.bas

package info (click to toggle)
bwbasic 2.20pl2-3.2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,204 kB
  • ctags: 1,251
  • sloc: ansic: 20,989; makefile: 115
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"