blob: 835db83902f199be23ab5d0d140cc9be88fa18fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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();
}
|