1
0

Removing all files in .gitignore

This commit is contained in:
Thibaud Gasser 2018-04-05 20:07:50 +02:00
parent e8a7ab538b
commit 9905b937a0
7 changed files with 0 additions and 41 deletions

View File

@ -1,5 +0,0 @@
if (0) {
println(81);
} else {
println(42);
}

View File

@ -1,5 +0,0 @@
if(1){
println(81);
} else{
println(42);
}

View File

@ -1,5 +0,0 @@
int add(int a, int b) {
return a + b;
}
println(add(5, 8));

View File

@ -1,9 +0,0 @@
int i;
i = 42;
int randomNumber() {
int i;
i = 4;
return i;
}
println(randomNumber());
println(i);

View File

@ -1,5 +0,0 @@
int number() {
return 4;
}
println(number());

View File

@ -1,6 +0,0 @@
int x(int i) {
println(i);
return i;
}
println(x(0) && x(1));

View File

@ -1,6 +0,0 @@
int x(int i) {
println(i);
return i;
}
println(x(1) || x(0));