RosettaCodeData/Task/Formatted-numeric-output/Logo/formatted-numeric-output-1.logo

5 lines
137 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
to zpad :num :width :precision
output map [ifelse ? = "| | ["0] [?]] form :num :width :precision
end
print zpad 7.125 9 3 ; 00007.125