corrected project to work with test_compiler.sh

This commit is contained in:
Clemens-Dautermann 2020-08-19 23:29:07 +02:00
parent 26d10cfef0
commit b2c2a2f497
15 changed files with 232 additions and 28 deletions

View file

@ -0,0 +1,3 @@
int main() {
return 100;
}

10
stage_1/valid/newlines.c Normal file
View file

@ -0,0 +1,10 @@
int
main
(
)
{
return
0
;
}

View file

@ -0,0 +1 @@
int main(){return 0;}

3
stage_1/valid/return_0.c Normal file
View file

@ -0,0 +1,3 @@
int main() {
return 0;
}

3
stage_1/valid/return_2.c Normal file
View file

@ -0,0 +1,3 @@
int main() {
return 2;
}

1
stage_1/valid/spaces.c Normal file
View file

@ -0,0 +1 @@
int main ( ) { return 0 ; }