DAddYE / igo

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

Incorrect code should give alerts in output code #6

Open parf opened 10 years ago

parf commented 10 years ago
if age > 30: p.say "Hello Sir."
else if age < 18: p.say("Hi buddy")

gives me if age > 30 { p.say } if age < 18 { p.say("Hi buddy") } else {

and this is really wrong !!!

DAddYE commented 10 years ago

It will thanks, for the feedback.

Just for readers, the error is that p.say "Hello Sir." miss parens.