in reply to Re: exiting a if loop
in thread exiting a if loop

> You realise of course that you example you gave
> can be written more succintly as:

> $check = "TRUE" if ((HOLIDAY) or ($time <= 1800))

For more succinctness, leave out the parens:

$check = TRUE if $HOLIDAY or $time<=1800;