## Code to reproduce ```python routine main(x: integer) : integer is println x; return 0; end ``` ``` $ ./cplus -d source.cp $ ./a.out 5 ``` ## Expected output Prints 5 ## Actual output Prints other random value, although the generated `ir.ll` seems correct.