RosettaCodeData/Task/Non-decimal-radices-Output/BBC-BASIC/non-decimal-radices-output.basic
2023-07-01 13:44:08 -04:00

8 lines
220 B
Text

REM STR$ converts to a decimal string:
PRINT STR$(0)
PRINT STR$(123456789)
PRINT STR$(-987654321)
REM STR$~ converts to a hexadecimal string:
PRINT STR$~(43981)
PRINT STR$~(-1)