Compiler Design 2023

Testcase “literals” of Assignment 5:
1
2
3
4
5
6
7
8
9
10
int main() {
  putInt(1);
  putLn();
  putBool(true);
  putLn();
  putFloat(1.0);
  putLn();
  putString("string 1");
  putLn();
}