Im trying to use a Else statement on my code, but i cant figure out the correct sintaxe. Wheres the error on that? If i comment the 'Else' line code compiles just fine.
Procedure im_dumb;
begin
If (1 > 2) Then
begin
AddToDebugJournal('if');
end;
else
begin
AddToDebugJournal('else');
end;
end.
Program New;
begin
im_dumb;
end.