TropicSapling/triforce

Statements ending with a '{}' expression don't get a semicolon

Closed this issue · 1 comments

This works:

let res = 1 * 2 + {println "This was printed from inside an expression!"; 3 ** 4} * 5 + 6;

But this doesn't:

let res = 1 * 2 + {println "This was printed from inside an expression!"; 3 ** 4};

This has been fixed in dev, closing when merged 🙂