-
Notifications
You must be signed in to change notification settings - Fork 0
/
algs.txt
107 lines (90 loc) · 2.51 KB
/
algs.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
101
102
103
104
105
106
107
comment
$ - Commenting
? - Commenting
> - Commenting
comment - Commenting
basic
version - Version
output - Console Output
input - Console Input
end - Exit
variable
meta - Meta Data Variable
var - Variable
alg - Function
result - Returns Values
operator
add - Adds Given Values
subtract - Subtracts Given Two Values
multiply - Multiplies Given Values
divide - Divides Given Two Values
power - Raises First Value To Power Of Second Value
logic
condition - If-Else Statement
check - Returns Objective Value Of Given Values And Conditions
loop
repeat - Statically Repeats Given Function
loop - Dynamically Loops Given Function On Basis Of Given Condition
iterable
count - Returns Length Of Value
insert - Inserts A Second Given Value Inside Of The First Given Value
remove - Removes The Second Value From First Many Value Third Given Value Times
delete - Removes The Second Value Index Character From First Value
file
read - Reads A File Named As Given Value
write - Writes Second Value In A File Named As First Value, Creates If Not Found
time
reset_tick - Resets Engine Tick Count
pause_tick - Pauses Engine Ticking
resume_tick - Resumes Engine TIcking
get_tick - Gets Engine Tick Count
console
console - Executes Given Value As Command In Running Console
clear - Clears Output Console
debug
info - Variable/Value Type
restore - Allows Code Execution Again
error - Creates Error
warn - Creates Warning
external resource
module - Imports And Partially Executes Module
variable types
binary
number
decimal
text
nothing
collection
conditional operations
equals to equals =
not equals to not !=
greater than greater >
less than less <
greater than equal to notless >=
less than equal to notgreater <=
contains contains <-
does not contain notcontains !<-
starts with starts _%
does not start with notstarts !_%
ends with ends %_
does not end with notends !%_
special characters
#NEWLINE '\n'
#INDENT '\t'
#BACKSPACE '\b'
#START '\r'
#SPACE ' '
#LEFTSQUARE '['
#RIGHTSQUARE ']'
#LEFTCURLY '{'
#RIGHTCURLY '}'
#COMMA ','
#DOT '.'
#SEMICOLON ';'
#COLON ':'
#EQUAL '='
#HASH '#'
#QUESTION '?'
#EXCLAMATION '!'
#QUOTE '"'
#APOSTROPHE "'"