Operators
MiniScript defines the following operators (listed in order from lowest to highest precedence):
Operator | Meaning |
---|---|
A = B |
assignment |
A or B |
logical OR: true if either operand is true |
A and B |
logical AND: true if both operands are true |
not A |
logical negation: true if its operand is false, and vice versa |
A isa B |
type checking |
A == B |
equality comparison: true if operands are equal |
A != B |
inequality comparison: true if operands are not equal |
A > B |
greater-than comparison |
A < B |
less-than comparison |
A >= B |
greater-than or equal-to comparison |
A <= B |
less-than or equal-to comparison |
A + B |
addition or concatenation |
A - B |
subtraction or string trimming |
A * B |
multiplication or replication |
A / B |
division or reduction |
A % B |
modulo (remainder) |
- A |
unary minus (numeric negation) |
new A |
instantiation |
@ A |
address-of (reference function without invoking it) |
A ^ B |
power: A raised to the power of B |
A[ B] |
indexing |
A[ B: C] |
slicing |
A( B, C...) |
calling a function |
A. B |
dot operator |
Contents
Chaining Operators
Most binary operators in MiniScript can be combined into chains, for example 39 + 2 + 1
. The details depend on the type of operator:
Arithmetic Operators
In an expression involving a chain of arithmetic operators, the highest-precedent operators are evaluated first, as in standard algebra. You can always use parentheses to break such a chain into smaller chunks, forcing a different evaluation order.
Code | Result |
---|---|
2 + 5 * 8 |
42 |
(2 + 5) * 8 |
56 |
3 ^ 2 + 4 ^ 2 |
25 |
Comparison Operators
In the case of comparison operators (>
, <
, >=
and <=
), operands are compared in pairs from left to right. All comparisons must be true for the complete chained expression to be considered true. The most common use of this is to check whether a variable is in a certain range, with an expression like 0 < x < 10
, which is true only if x
is between 0 and 10 (non-inclusive).
Code | Given | Result | Read As |
---|---|---|---|
0 < x < 10 |
x = 5 | true | x is between 0 and 10 |
0 < x < 10 |
x = 10 | false | x is between 0 and 10 |
0 < x <= 10 |
x = 10 | true | x is between 0 and 10 (including 10) |
0 < x < 10 < y |
x = 5; y = 15 | true | x is between 0 and 10, and 10 is less than y |
Dot Operator
A chain of dot operations is evaluated one step at a time left to right.
For example, given the code:
foo.bar.baz
MiniScript proceeds in the following steps:
foo.bar
is evaluated by looking up "bar" infoo
(and in the event that this references a function, it's invoked withself
bound tofoo
..baz
is evaluated by looking up "baz" in the result of step 1 (which should be a map). (And if "baz" references a function, it's invoked withself
bound to the map from step 1.)
This can continue for an arbitrarily long chain of dot operators.
Math-assignment operators
In version 1.6 the math-assignment operators were added. They perform an operation in-place on a variable provided as first operand. They overwrite the value of the first operand variable with the result of the operation when performing the operator without assignment.
x = 42
x += 13 // x = x + 13
print x // 55
s = "hello.ms"
s -= ".ms" // s = s - ".ms"
print s // "hello"
Operator | Meaning |
---|---|
A += B |
A = A + B |
A -= B |
A = A - B |
A *= B |
A = A * B |
A /= B |
A = A / B |
A %= B |
A = A % B |
A ^= B |
A = A ^ B |