1
Ideas / Re: unifying '->' and '.' member accessors
« on: March 27, 2013, 09:42:34 PM »
That would be an improvement in my opinion too. Coming from languages like C#, Java or even Go it's very easy to use the dot instead of ->. Speaking of Go, I think it is a very nice language to take inspiration from. Go has a very simple & consistent syntax and a nice module system which made it very successful. The only problem with Go is that it is not 100% inter operable with C code (you can call C functions from Go but not the other way) and has a garbage collector. C2 can take this niche: best principles from Go + 100% interop with C + no garbage collector.