[net.lang.pascal] if_then_else problem

mcguire (02/12/83)

    Not too long ago someone said he had a problem with the Pascal segment...

if (conditional) then (*skip it*) else (statement)

    I think the problem is that you MUST have a statement between the then
and the else.  you could try...

if (cond) then begin (*skip it*) end else (statement)

    I'm not positive about this so don't tell me if I'm wrong.  If this helps,
you're welcome; if not, sorry.

						Ryan