Compiler Design 2023

Testcase “assignment” of Assignment 5:
1
2
3
4
5
6
int main() {
  int a;
  a = 22;
  putInt(a);
  putLn();
}