7 lines
342 B
QBasic
7 lines
342 B
QBasic
|
|
10 REM The reference selects base 8 for any lexeme starting with 0, so 010 is 8
|
||
|
|
20 REM and 08 is a parse error. Commodore BASIC has no octal literals -- this is
|
||
|
|
30 REM TODO.md section 6 item 10, reproduced deliberately until it is fixed on
|
||
|
|
40 REM purpose. Pinned here so the eventual fix has to change a golden file.
|
||
|
|
50 PRINT 010
|
||
|
|
60 PRINT 08
|