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

5 lines
137 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
to zpad :num :width :precision
output map [ifelse ? = "| | ["0] [?]] form :num :width :precision
end
print zpad 7.125 9 3 ; 00007.125