CoffeeTableEspresso
CoffeeTableEspresso
these should return a string representation that is legal YASL code. for example: ``` const x = 'string' echo x # string echo x->repr() # 'string' ``` Strings will be...
Blocked by #203
This would allow mutually recursive functions, as below: ``` fn f; fn g(....) { f(....); } fn f(....) { g(....) } ``` Something like this?
This should include things like `tostr`, which is hardcoded currently, as well as stuff like checking the expected number of arguments.