cminus/data/test5.c

20 lines
197 B
C
Raw Normal View History

2023-04-10 11:17:11 -04:00
void foo() {
println(7);
}
void fum() {
int a;
int b;
a = 9;
b = 12;
println(b-a+4);
foo();
}
void main() {
println("This program prints 7 7 7");
foo();
fum();
}