-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.src
More file actions
executable file
·60 lines (45 loc) · 803 Bytes
/
test.src
File metadata and controls
executable file
·60 lines (45 loc) · 803 Bytes
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
void main() {
string str = "ololol";
!
! for (int i = 0, i < 10, i = i + 1) {
! str = str + sys.readLine();
! } ;
!
! sys.println(str);
}
int id(int num) {
id = num
}
int pow(int x, int y) {
pow = 1;
for (,y > 0, y = y / 2) {
if (y % 2 == 1) {
pow = pow * x;
};
x = x * x;
};
}
void read(){
char c = sys.getChar();
sys.putChar(c);
}
char get(string str, int index) {
get = str[index];
bool ans = str == str;
}
bool cmp(bool x, bool y) {
cmp = x == y;
}
bool cmp(char x, char y) {
cmp = (x == y) | (x <> y);
}
bool cmp(int x, int y) {
cmp = (x < y) | (x <= y) | (x == y) | (x >= y) | (x > y) | (x <> y);
}
int sum(int x, int y) {
sum = x + y;
}
init(int a,int b, char.3 lol) {
test.a = 3;
test.b = 5;
}