DAddYE / igo

Intermediate GoLang source representation
http://play.igolang.io
139 stars 6 forks source link

multiline "if" not parsed correctly #5

Closed parf closed 10 years ago

parf commented 10 years ago

if age > 30: p.say("Hello Sir.")

DAddYE commented 10 years ago

Should be:

if age > 30
    p.say("Hello Sir.")

Use : for single line statements.