RosettaCodeData/Task/Formatted-numeric-output/True-BASIC/formatted-numeric-output.basic

4 lines
66 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
LET n = 7.125
PRINT USING ("0000#.###"): n ! => 0007.125
END