* MIDletPascal supports the following if constuct...
Code:
if value1 <> value2 then 
  Statement1; // Note ; at end 
else 
  statement2;
But it also allows classic pascal syntax...
Code:
if value1 <> value2 then 
  Statement1
else 
  statement2;