jmeile
2019-11-22 19:56:43
Hi
I'm just wondering if it is possible to group expressions on assignments. For example, I would like to have something like this on a rule:
oo=(go%12) +gq
However, the parenthesis trigger a syntax error. So, I have to do it in two lines:
oo=go%12
oo=00+gq
One line would be much more better.
Best regards
Josef
Steve-Bome Forum Moderator
2019-11-22 20:12:10
You cannot group operators, only one operator per line as you were able to achieve in your second example.
Steve Caldwell
Bome Q and A Moderator and
Independent Bome Consultant/Specialist
bome@sniz.biz
jmeile
2019-11-22 20:21:00
comment
Ok, thanks for your answer. I was hoping that there were another way, but I guess I can leave with that.