@meena Python ?
~ $ lua5.3
Lua 5.3.5 Copyright (C) 1994-2018 Lua.org, PUC-Rio
> 1.2 + 2.2
3.4
And
~ $ node
Welcome to Node.js v16.13.0.
Type ".help" for more information.
> 1.2 + 2.2
3.4000000000000004
what's funny to me is that Lua makes almost all the same design decisions as JavaScript, but Lua does it right.
@meena
By default, 3.4000000000000004
@colt double precision by default? nice