Quick Quiz #2 - Semicolons

Programming language questions
Post Reply
cfbsoftware
Posts: 55
Joined: Wed Sep 18, 2013 10:06 pm
Contact:

Quick Quiz #2 - Semicolons

Post 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;
Post Reply