summaryrefslogtreecommitdiff
path: root/data/test3.c
blob: 108343416cb968cf48e5888f61fc2fd0cc2bc4e8 (plain)
1
2
3
4
5
6
7
8
9
void main() {
  int a;
  int b;

  println("This program prints the number 7");
  a = 3;
  b = 4;
  println(a+b);
}