Comment Re:Programming and human language (Score 1) 2360
So if "return true;" works but not "ret tru", then I'm forced to use "return true;" every time.
Sure you can:
Sure you can:
#define ret return
#define tru true;
bool foo(){
ret tru
}