igo
igo copied to clipboard
Intermediate GoLang source representation
This is a great idea. Love whitespace significant style of Python, Boo and Nim. Saves a literal ton of code. Anyone using this in the pipeline for real projects now...
Hello ! I'm working on a similar project that shares some of your philosophy: [https://github.com/Champii/og](https://github.com/Champii/og) It's still a WIP but you may want to give it a look :) Great...
Since I have been using CoffeeScript for a long time, there are some practice that I think maybe some of them fit igo too. - In CoffeeScript, running `coffee` enters...
``` 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 {...