Variables
Similar to python, variables do not require specific types and can be declared as follows:
import lib
res_value = 10k
at res(res_value)
Numeric type
Besides integers and floating numbers, specify numeric values using the following multiplers:
Multipler | Value | Example |
---|---|---|
p | pico | 10p |
n | nano | 10n |
u | micro | 10u |
m | mili | 10m |
k | kilo | 10k |
M | mega | 10M |
Math operations
The usual math operations are supported: addition, subtraction, multiplication and division.