Page 1 of 1

Posted: 07 Jan 2016, 18:50
by sephult
I am having problems with using the (or) statement like

if i = 53 or 54 then begin

I even tried

if i = (53 or 54) then begin


I am curious if there is another way to get this working, or if possible the (or) is not implemented or correct in this statement.



-s

Posted: 07 Jan 2016, 19:35
by 23fx23
think you need to do : if ((i=53) or (i=54))