Email or username:

Password:

Forgot your password?
Top-level
charlie

The `$label` syntax is not a thing, BUT it could be!! I managed to hack it together for uxnasm in a couple of lines of code

paste.sr.ht/~bellinitte/54fd46

4 comments
charlie

This stuff is sorta possible with the current syntax using a bunch of macros like these:
```
%Vector/size$ { $4 }
%Player/size$ { $9 }

@player-1 Player/size$
```
but this approach requires adjusting all paddings by hand in case any size changes.

Go Up