Page 1 of 1

Quick Quiz #2 - Semicolons

Posted: Sat Nov 29, 2014 11:03 am
by cfbsoftware
How many semicolons need to be removed from the following code snippet before it will compile? Please post your solution here to give others a chance to think about it first before looking at your answer.

Code: Select all

  IF i = 0 THEN;
     j := 0;
  ELSE;
     j := 1;
  END;