cminus/data/test3.c

10 lines
116 B
C
Raw Normal View History

2023-04-10 11:17:11 -04:00
void main() {
int a;
int b;
println("This program prints the number 7");
a = 3;
b = 4;
println(a+b);
}