Mosc follows c-like language syntax
Identifiers #
Identifiers are used to as function, method, variable or class name. They should match [a-zA-Z][a-zA-Z_]
patterns
molo # valid
_molo # valid
__molo # valid
11molo # invalid identifier
$molo # invalid identifier
Keywords #
ale
, atike
, dialen
, dilan
, dunan
, faa
, foo
, inafo
, ipan
, kabo
, kaj
, kay
, kono
, kulu
, nani
, nii
, niin
, note
, segin
, seginka
, tii
, tumamin
, ye
You can declare use those keywords as identifiers
Comment #
Comments are divided in 2 categories: single ling comment and block comments. Single line comment starts with #
while block comments starts with #*
and ends with *#
# Single line comment, ends at the end of the line
#*
Block comment,
Can have multi line
*#
New lines and ; #
New-line are important in Mosc, they are used to end an expression if those are not already ended by a ;
.
12 + 34 # new line
test()
You can put new line in arbitrary position in Mosc code as long as its not the end of the expression their will be ignored by Mosc.
Block #
Block is a statement and contains a group of statement, you can use it anywhere a statement is allowed, it starts at a {
and ends at }
. Things like function or methode body,
control flow body In the block are allowed statements.
nii a > 3 {
# statements here
} note {
# statements here
}
Operators #
Mosc supports arithmitic operations like any language, operators are classified per priority as bellow
Prec | Operator | Description | Associates |
---|---|---|---|
1 | () [] . |
Grouping, Subscript, Method call | Left |
2 | - ! ~ |
Negate, Not, Complement | Right |
3 | * / % |
Multiply, Divide, Modulo | Left |
4 | + - |
Add, Subtract | Left |
5 | .. ... |
Inclusive range, Exclusive range | Left |
6 | << >> |
Left shift, Right shift | Left |
7 | & |
Bitwise and | Left |
8 | ^ |
Bitwise xor | Left |
9 | | |
Bitwise or | Left |
10 | < <= > >= |
Comparison | Left |
11 | is |
Type test | Left |
12 | == != |
Equals, Not equal | Left |
13 | && |
Logical and | Left |
14 | || |
Logical or | Left |
15 | = |
Assignment, Setter | Right |