printf
printf copied to clipboard
[BUG] Float format
Printf.format("%.8f", [0.0000001]);
This line gives unexpected result. Epected result: 0.00000010
Looks like it's because we use Std.string to convert to a string. Looks like we might have to do it ourselves.