General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
Anony Mousse
Coding Jesus
comments
Comments by "Anony Mousse" (@anon_y_mousse) on "" video.
Personally, I hate the ambiguity in parsing either C or C++ in terms of grouping tokens. Consider that if you separate all the plusses with a space the answer will be 5, and if you use no spaces it'll be an error. For my own language I made the space integral to correct parsing, so if you use x+++ ++y, in C and C++ both it would be 6 while in my own language it would still be an error. This does also enable me to come up with novel operators by merely adding more together, so maybe people will consider it a good tradeoff, or maybe other people hated the way C and C++ did it also.
1