Email or username:

Password:

Forgot your password?
Top-level
DHeadshot's Alt

@neauoire What's the actual opcodes stored whena lambda is used in the sourcecode? wiki.xxiivv.com/site/uxntal_la doesn't really explain that?

3 comments
Devine Lu Linvega

@ddlyh it depends, lambdas are just labels.

If you use !{ then it's a immediate jump, if you ?{ then it's a conditional immediate jump, but they have different opcodes. You can do ;{ then you'll have an absolute lit2
wiki.xxiivv.com/site/uxntal_im

DHeadshot's Alt

@neauoire labels of the current location? Then why does "?{" never run? Shouldn't it have to be "#00?{"?

Go Up