RosettaCodeData/Task/Formatted-numeric-output/Hexiscript/formatted-numeric-output.hexi
2023-07-01 13:44:08 -04:00

9 lines
121 B
Text

fun format n length
let n tostr n
while len n < length
let n 0 + n
endwhile
println n
endfun
format 7.125 9