Basic Structure Examples
The following examples show the basic structure of Variable expressions
- A+(B*5)
- b * 2 + c / 2
- X+(A>B)/(Y*Z)
- var1/(var2-var3)
- (a < c) * 23 + (a > c) * 53
- b * c
- c / 2 + 4
- b * 2 + c / 2
- b > c
- b < c
- c % b
- b % c
- a + (b - (c*2) )
- - (a + 3)