1 2 3 4 5 6 7 8 9 10 11
let main = () => { let test = 1922; let uwu = test; print(uwu); /* <- This is what triggers the problem */ return 0; }; /* TODO */