RosettaCodeData/Task/Count-in-octal/Elixir/count-in-octal-3.elixir

3 lines
67 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
f = fn ff,i -> :io.fwrite "~.8b~n", [i]; ff.(ff, i+1) end
f.(f, 0)