I'm having trouble thinking of a less googleable name for a programming language.
The None Programming Language
31–40 of 46 posts
Re: The None Programming Language
#32I'm having trouble thinking of a less googleable name for a programming language.
I think that award goes to "S" [ https://en.wikipedia.org/wiki/S_(programming_language) ]. If you add a "-lang" suffix (the traditional fix for a poorly-named programming language), you just end up with "slang".
Re: The None Programming Language
#33Re: The None Programming Language
#34So it's basically an S-expression-syntax wrapper around Terra? So cool. I really wish more languages picked up S-expressions, because they're easy to machine-generate . I can't count the number of times I've been annoyed at my otherwise favourite languages for not being able to do that.
This could easily be solved using a well-defined AST and a simple s-expression based AST printer/parser. That not many languages do that (one notable exception is Julia) is a shame!
Re: The None Programming Language
#35So it's basically an S-expression-syntax wrapper around Terra? So cool. I really wish more languages picked up S-expressions, because they're easy to machine-generate . I can't count the number of times I've been annoyed at my otherwise favourite languages for not being able to do that.
There is an easy way to generate pretty much any AST using quasiquotations. S-expressions are nice, but certainly not mandatory for a full metaprogramming.
Re: The None Programming Language
#36/rant
Re: The None Programming Language
#37So it's basically an S-expression-syntax wrapper around Terra? So cool. I really wish more languages picked up S-expressions, because they're easy to machine-generate . I can't count the number of times I've been annoyed at my otherwise favourite languages for not being able to do that.
> I really wish more languages picked up S-expressions, because they're easy to machine-generate. This could easily be solved using a well-defined AST and a simple s-expression based AST printer/parser. That not many languages do that (one notable exception is Julia) is a shame!
JavaScript has https://github.com/estree/estree for example. I've written a (very experimental) S-expression syntax for JavaScript around it here https://github.com/anko/eslisp
Re: The None Programming Language
#38And it looks like it is being used to create this, http://www.duangle.com/nowhere - A Psychedelic RPG
At least with this, the work is open source, so even if the game never comes out, the language has a shot.
Re: The None Programming Language
#39I'm having trouble thinking of a less googleable name for a programming language.
Hint: Not Apple's.
Re: The None Programming Language
#40So it's basically an S-expression-syntax wrapper around Terra? So cool. I really wish more languages picked up S-expressions, because they're easy to machine-generate . I can't count the number of times I've been annoyed at my otherwise favourite languages for not being able to do that.
> I really wish more languages picked up S-expressions, because they're easy to machine-generate. There is an easy way to generate pretty much any AST using quasiquotations. S-expressions are nice, but certainly not mandatory for a full metaprogramming.