drim/axc/foo.axs
Alex Bethel 12446bf85e Implement tuples, remove unary operators
Removed unary `-` in favor of a special function called `~` because
I'm lazy and will probably do it the other way later
2022-08-08 21:33:24 -05:00

5 lines
96 B
Plaintext

// AlexScript
def double x = x * 2;
def tuple = (atan2 x y + z, thing);
def negatives = 2 + ~3;