Block a user
Base
in Janet
Most base is complete in e468add325
Left to do:
into/2
doc
to_dict
All of these have some decisions left…
Ensure stack overflows don't kill Ludus
#29 helps but does not fix this. If recursive calls are in tail position, we won't get stack overflows. But beginners may overflow the stack by non-tail recursive calls, and we don't want that to…
Tail call optimization
The solution to this is to ensure that all relevant functions in the Janet interpreter are themselves written in a way that Janet's TCO takes care of it. (In theory.) Current practice in the…