ABCDEFGHIJKLMNOPQRSTUVWXYZAA
1
TypeNameDescription
2
1integerNumberInt number
3
2doubleNumberReal number
4
3stringConstantString constant
5
4nameIdentifier
6
5variableTypeVariable type (int, string, bool, double)
7
6functionTypeFunction type (null)
8
7sOperatorOperator (while, for, if, else, break, continue, return etc.)
9
8logicalOperatorLogical operator (and, or, xor, !)
10
23logicalConstantLogical constant (true, false)
11
19readwriteOperatorI/O operator (function) (read,write)
12
22importOperatorModule сonnection operator (import)
not implemented
13
9assignmentOperatorAssignment operator (=)
14
10comparsionOperatorComparsion operator (==, <=, >=, <, >, !=)
15
11binaryMathOperatorBinary mathematical operator (+, -, *, /, %, **)
16
12unaryMathOperatorUnary mathematical operator (++, --, -)
17
13semicolon;
18
14openingBracket(
19
15closingBracket)
20
16openingBrace{
21
17closingBrace}
22
20openingSquareBracket[
23
21closingSquareBracket]
24
18comma,
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100