File: lof.bas

package info (click to toggle)
bwbasic 2.20pl2-14
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,784 kB
  • sloc: ansic: 21,005; makefile: 80
file content (5 lines) | stat: -rw-r--r-- 137 bytes parent folder | download | duplicates (12)
1
2
3
4
5
10 print "Test LOF() Function"
20 input "Filename";F$
30 open "i", 1, F$
40 print "Length of file ";F$;" is ";LOF(1);" bytes"
50 close 1