Removing all files in .gitignore
This commit is contained in:
parent
e8a7ab538b
commit
9905b937a0
@ -1,5 +0,0 @@
|
|||||||
if (0) {
|
|
||||||
println(81);
|
|
||||||
} else {
|
|
||||||
println(42);
|
|
||||||
}
|
|
@ -1,5 +0,0 @@
|
|||||||
if(1){
|
|
||||||
println(81);
|
|
||||||
} else{
|
|
||||||
println(42);
|
|
||||||
}
|
|
@ -1,5 +0,0 @@
|
|||||||
int add(int a, int b) {
|
|
||||||
return a + b;
|
|
||||||
}
|
|
||||||
|
|
||||||
println(add(5, 8));
|
|
@ -1,9 +0,0 @@
|
|||||||
int i;
|
|
||||||
i = 42;
|
|
||||||
int randomNumber() {
|
|
||||||
int i;
|
|
||||||
i = 4;
|
|
||||||
return i;
|
|
||||||
}
|
|
||||||
println(randomNumber());
|
|
||||||
println(i);
|
|
@ -1,5 +0,0 @@
|
|||||||
int number() {
|
|
||||||
return 4;
|
|
||||||
}
|
|
||||||
|
|
||||||
println(number());
|
|
@ -1,6 +0,0 @@
|
|||||||
int x(int i) {
|
|
||||||
println(i);
|
|
||||||
return i;
|
|
||||||
}
|
|
||||||
|
|
||||||
println(x(0) && x(1));
|
|
@ -1,6 +0,0 @@
|
|||||||
int x(int i) {
|
|
||||||
println(i);
|
|
||||||
return i;
|
|
||||||
}
|
|
||||||
|
|
||||||
println(x(1) || x(0));
|
|
Loading…
Reference in New Issue
Block a user