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 (8 lines) | stat: -rw-r--r-- 316 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
10 REM Test PRINT USING with commas
20 OPEN "OUTPUT" FOR OUTPUT AS 1
30 PRINT#1, USING "#######,.###"; 2000345.678
40 PRINT#1, USING "#######,.###"; 12345.678
50 PRINT#1, USING "#######,.###"; 345.678
60 PRINT#1, USING "#######,.####"; 205.6789
70 PRINT#1, USING "#######,.##########"; 1205.6789012
80 CLOSE