Email or username:

Password:

Forgot your password?
3 posts total
Marce Coll

@wryl today I had some time to think about how Nova works, can you let me know if this is accurate dziban.net/note/nova

(wryl)

@dziban A lot of this is correct, and a lot of it is simpler than you've specified.

Variable assignment and expression evaluation isn't a built-in feature of the language, but instead considered a part of the standard library.

Rule priority is source-order, and rules consume the tuples they match. The left-hand side of a rule is the tuples it consumes, while the right-hand side is the tuples it produces.

I've updated the snippet with more code.

gitlab.com/-/snippets/3716812

Marce Coll

@neauoire finally made my first useful non-toy program in Forth. It's pretty satisfying, I think I'm grasping more and more what it is and it feels incredible. It's strange how it focuses you on simplifying the problem instead of giving you infinite tools to bloat and to feature creep everything. I've never felt that a tool guides my thought in a good way quite as much as with Forth.

Devine Lu Linvega

@dziban that's awesome! I'm glad to hear. Forth is a superpower. What did you make?

Marce Coll

ret2pop.nullring.xyz/blog/cogn very interesting and mind-blowing language with no syntax that has to bootstrap the tokenizer

Go Up