Show HN: Self-hosted stack-based programming language
1–10 of 24 posts
Re: Show HN: Self-hosted stack-based programming language
#2Re: Show HN: Self-hosted stack-based programming language
#3Re: Show HN: Self-hosted stack-based programming language
#4Any chance that this is inspired by Forth?
Re: Show HN: Self-hosted stack-based programming language
#5Re: Show HN: Self-hosted stack-based programming language
#6The README claims easy Domain-specific-language creation. Here is a concrete example how code which utilizes these features looks like: https://gist.github.com/Drahflow/c463717d5c72e114ac63
Re: Show HN: Self-hosted stack-based programming language
#7Any chance that this is inspired by Forth?
Define "inspired". I became aware of Forth while implementing Elymas. But the decision to make it stack based was actually because I was too lazy (after some attempts) to implement a correct LALR-parser-generator.
Re: Show HN: Self-hosted stack-based programming language
#8 2 /two define
{ two add } /addTwo defineRe: Show HN: Self-hosted stack-based programming language
#9I find the differing syntax between function and variable storage to be interesting. Is there any particular reason these aren't unified? Assuming anything in brackets is a first-class "function" object, something like this should be possible: 2 /two define { two add } /addTwo define
Re: Show HN: Self-hosted stack-based programming language
#10The README claims easy Domain-specific-language creation. Here is a concrete example how code which utilizes these features looks like: https://gist.github.com/Drahflow/c463717d5c72e114ac63
For the love of brackets...