Owais Mohsin
Owais Mohsin
I think tail call optimization is more of you know, an optimization rather than an innate feature of a language that needs implementation once the core is there. I think...
Btw, is there a Pointless BNF?
I would start by commenting on tail-recursion. I understand that pointless itself doesn't have any loop structures and some list functions might be broken without tail-recursion optimization but compiling to...
Yes, I happened to be leaning more towards the idea of implementing it in nim. I think I would like to implement this programming language with either an interpreter or...
Definitely send the tests over, they'll be a huge help. Ran it against a bunch of tutorial examples found some bugs and fixed them. Now it runs fine with all...
Thanks for the tests, worked out really well for me. Finally got all the tests running for the parser and the tokenizer. I was thinking why not implement both the...
Once again thanks for the test. I got the basic interpreter working (except for the imports and prelude, I'll add them once I test everything out). I am fixing bugs...
Just got done with pretty much the entire interpreter, along with module system, and am currently improving a bit on errors. Should I upload it as a fork of this...
There are features that are yet to be implemented such as ~~caching imports and~~(Just added that) automated inclusion of prelude, but [here it is](https://github.com/ameerwasi001/pointless/tree/NIm-Implementation).
Another thing I recently had on my mind was binary infix functions, should I add them, if so then I think I should do a PR here too. The idea...