How to use operator division?

0
I want to do division using operators. ・multiplication → * ・division → /         ・・・Can't this be used?   exsample) $MyEntity/Integer * $MyEntity/Integer / $MyEntity/Integer  →this is error.
asked
1 answers
3

Hi Fujii,

 

For Multiplication -> *

 

For division, you can use "div" or  ":"

 

For e.g 4 div 2 or 4:2

 

 

image.png image.png

answered