9 lines
161 B
Plaintext
9 lines
161 B
Plaintext
// AlexScript
|
|
def double x = x * 2;
|
|
def tuple = (atan2 x y + z, thing);
|
|
|
|
def unary = -2;
|
|
def minus = 2 - 2;
|
|
def unary_app = 2 (- 2);
|
|
def unary_double = 2 - - 2;
|