Email or username:

Password:

Forgot your password?
Devil Lu Linvega

Implementing the recent changes to Varvara in Oquonie, I noticed how many single-purpose labels I used merely to hop over short lengths of code, enough that having ran out of ideas for names to called them, I would default to like &skip, &ok, or &continue. The solution was to create anonymous labels, and as to be capable of nesting them, I ended up inadvertently adding lambdas to Uxntal.

Just stumbled on "Adding Lambda Expressions to #Forth"

euroforth.org/ef06/lynas-stodd

Too little too late.

2 comments
⛧ esoterik ⛧

@neauoire did you take a look at zzo38's work here? they seem to have something similar in uxn38

Devil Lu Linvega

@d6 Oh! They've added support to lambdas too! Wonderful :)

github.com/zzo38/uxn38/commit/

The implementation of the BUILD-STACK word in the paper linked above is about the same thing, word for word(except that we're building a symbols file) than the uxnasm/drifblim implementation.

git.sr.ht/~rabbits/drifblim/tr

Go Up