fn doStuff() { let i = { return 234.5; }; i = 5; // This comment is going to be ignored. return i; // we returned here } doStuff();