UIFlow Guide
Simple logical operations and variable assignment
date = 10
date = 11 + 12
addition
/subtraction
/multiplication
/division
/modulus
/exponentiation
operations on both sides of the equationdate = 13 + 4 - 8 % 2 - 7
addition
/subtraction
/multiplication
/division
/modulus
/exponentiation
operations on two or more valuesdate = 5 & 6
date = math.pi
date = 9 % 2
date = 8 % 2 == 0
even
/old
/prime
/whole
/positive
/negative
/divisible by
date = sum(list1)
date = random.random()
date = random.randint(0, 10)
date = min(max(50, 1), 100)
date = math.remap(0, 0, 1023, 0, 255)
date = round(2.4)
date = math.sqrt(0)
sqrt()
/log()
/log10()
/exp()
/pow()
date = math.sin(10 / 180.0 * math.pi)
sin()
/cos()
/tan()
/asin()
/acos()
/atan()
date = int('8')
date = float('0.8')
date = ((10 >> 0) & 0x01)
date = (10 | (0x01 << 0))
date = (10 & (~ (0x01 << 0)))
date = int.from_bytes(10, 'big')
date = (10 ^ (0x01 << 0))