Should I always translate commas between numbers to dot then, i.e. 1,2 becomes 1.2 ?
We use to evaluate math expressions (so you can write 5.0*pi inside your dialogs)
and erlang expects dot to be the delimiter between integer and fractions.
You can write: "A = 5.4, B=4.3, sin(deg2rad A+B)" where comma separates the expressions,
so it might be confusing tol allow "A = 5,4, B=4,3, sin(deg2rad A+B)" ??
We use to evaluate math expressions (so you can write 5.0*pi inside your dialogs)
and erlang expects dot to be the delimiter between integer and fractions.
You can write: "A = 5.4, B=4.3, sin(deg2rad A+B)" where comma separates the expressions,
so it might be confusing tol allow "A = 5,4, B=4,3, sin(deg2rad A+B)" ??