03 Dec 14, 11:49PM
Cubescript is annoying, and while C++ is more well-defined, C++ is in no way simpler. Cubescript uses pre-order instead of in-order operators. It's not that bad... C++ may seem simpler, but that's because growing up you were taught in order operators. Pre-order is cleaner. No need for annoying parentheses
In-order:
((1+2)*3+4)/5
Pre-Order
/ + * + 1 2 3 4 5
In-order:
((1+2)*3+4)/5
Pre-Order
/ + * + 1 2 3 4 5