Hint: used config file '/home/runner/.choosenim/toolchains/nim-1.6.10/config/nim.cfg' [Conf]
Hint: used config file '/home/runner/.choosenim/toolchains/nim-1.6.10/config/config.nims' [Conf]
.........................................................................................................
/home/runner/VarCalc/parsers.nim(20, 19) Error: illformed AST: {"tan": tan, "sin": sin, "cos": cos, "log2": log2, "ceil", ceil, "floor", floor}
I’m trying to put some math functions into a Table[string, proc (f: SomeFloat): SomeFloat]
..., "ceil", ceil, "floor", floor }
should probably be
..., "ceil": ceil, "floor": floor }
The error message you should have gotten is "expected colon-separated entry in table expression but got "ceil"" or something.
It's so easy to improve these error messages, I don't know why it's such a rare area of contribution