dsimcha wrote: > while(oldContractSyntaxSucks) { // Currently evaluates to true. > vote++; > } And always will do :D Proposed updated code: ---- while(currentContractSyntaxSucks) { // Currently evaluates to true. vote++; } complainAboutSomethingElse(); ----