Issue #31, added new line after while for pretty printing.

This commit is contained in:
Marvin Blum
2016-01-20 18:38:04 +01:00
parent 005a3bf101
commit 9786c63d52

View File

@@ -131,7 +131,7 @@ func (c *Compiler) parseWhile() {
c.expect("{")
c.parseBlock()
c.expect("}")
c.appendOut("};", false)
c.appendOut("};", true)
}
func (c *Compiler) parseSwitch() {