Formatted numeric output: Difference between revisions

Add SmallBASIC
(PascalABC.NET)
(Add SmallBASIC)
 
Line 591:
==={{header|Run BASIC}}===
<syntaxhighlight lang="runbasic">print right$("00000";using("#####.##",7.125),8) ' => 00007.13</syntaxhighlight>
 
==={{header|SmallBASIC}}===
<syntaxhighlight lang="qbasic">
print format("00000.000", 7.125)
</syntaxhighlight>
 
==={{header|TI-89 BASIC}}===
25

edits