Alex Bethel
12446bf85e
Removed unary `-` in favor of a special function called `~` because I'm lazy and will probably do it the other way later
5 lines
96 B
Plaintext
5 lines
96 B
Plaintext
// AlexScript
|
|
def double x = x * 2;
|
|
def tuple = (atan2 x y + z, thing);
|
|
def negatives = 2 + ~3;
|