Add new tests to help debugging
This commit is contained in:
parent
c2b396b853
commit
822376d142
|
@ -11,5 +11,6 @@ void :: main() {
|
|||
|
||||
PrintInteger(Result);
|
||||
|
||||
PrintInteger(Testings(10) + 10);
|
||||
PrintInteger(Testings(10) + i);
|
||||
|
||||
}
|
19
tests/funcs3
Normal file
19
tests/funcs3
Normal file
|
@ -0,0 +1,19 @@
|
|||
int :: Testings() {
|
||||
return (40);
|
||||
}
|
||||
|
||||
void :: main() {
|
||||
int Result;
|
||||
|
||||
PrintInteger(10);
|
||||
|
||||
Result = Testings(10);
|
||||
|
||||
PrintInteger(Result);
|
||||
|
||||
int i;
|
||||
for(i = 0; i < 5; i = i + 1) {
|
||||
|
||||
PrintInteger(Testings(10) + i);
|
||||
}
|
||||
}
|
10
tests/funcs4
Normal file
10
tests/funcs4
Normal file
|
@ -0,0 +1,10 @@
|
|||
void :: main() {
|
||||
|
||||
|
||||
int i;
|
||||
for(i = 0; i < 5; i = i + 1) {
|
||||
|
||||
PrintInteger(i);
|
||||
|
||||
}
|
||||
}
|
13
tests/print
Normal file
13
tests/print
Normal file
|
@ -0,0 +1,13 @@
|
|||
void :: main() {
|
||||
int x;
|
||||
int y;
|
||||
int m;
|
||||
|
||||
x = 5;
|
||||
y = 50;
|
||||
m = 300;
|
||||
|
||||
print m;
|
||||
print y;
|
||||
print x;
|
||||
}
|
Loading…
Reference in New Issue
Block a user