JumperBot / Unsafe-4-Bit

The UFB (Unsafe Four Bit) Programming Language -- FAST | EASY | VERBOSE -- Built With Rust

Home Page:https://jumperbot.github.io/Unsafe-4-Bit/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

:sparkles: Memory Index Labels! (Please)

JumperBot opened this issue · comments

Is your feature request related to a problem? Please describe.
Memorizing "which part of the memory is which" is going to be hard once things get crazy.

Describe the solution you'd like
Add a label syntatic sugar to make things easier.

Describe alternatives you've considered
Memorizing, or just keeping a table at hand.

Additional context
Maybe something that looks like this:

label 38, useMeLater
print ${useMeLater}
// Or
print "${useMeLater}\n"

That the compiler will turn into:

print 38
// Or
print "$038\n"