Operators
Scrybe has 7 binary numerical operators, 5 binary comparison operators, and 4 logical operators.
All numerical operators can be used for in-place assignment on a number, e.g. my_variable += 10
or base **= exponent
.
Concatenation
String concatenation is done with two strings and uses the symbol ..
, similarly to Lua.