Evaluator: Zero-padding to p places using As and "#p" doesn't work

Using "%0p" works fine.

d = 5;
Output(d as "%03");
Output(d as "#3");

As

Thanks! That'll be fixed in the next beta.

1 Like