Is this expected? I tried the following line
IF K % 2 = 1 then x99=200
It does not compile (adding brackets in various places does not help either). I had to use the work-a-round
k1=k%2
if k1=1 then x99=200
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Is this expected? I tried the following line
IF K % 2 = 1 then x99=200
It does not compile (adding brackets in various places does not help either). I had to use the work-a-round
k1=k%2
if k1=1 then x99=200
Fixed. GCB compiler v0.95 or greater.
This is a know issue. I will added to the know issue list.