Grouping expressions on assignments

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

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

Ok, thanks for your answer. I was hoping that there were another way, but I guess I can leave with that.