-
Notifications
You must be signed in to change notification settings - Fork 0
Maths
This feature lets you add value to another one.
This feature takes 2 parameters, hard written values, or variables.
Example:
Assuming there are values called:
- 'a' with a value of 10
- 'b' with a value of 5
ADDUWU a b
Result:
- The value 'a' is 15
- The value 'b' is 5
This feature lets you sub value to another one.
This feature takes 2 parameters, hard written values, or variables.
Example:
Assuming there are values called:
- 'a' with a value of 10
- 'b' with a value of 3
SUWUB a b
Result:
- The value 'a' is 7
- The value 'b' is 5
This feature lets you multiply value to another one.
This feature takes 2 parameters, hard written values, or variables.
Example:
Assuming there are values called:
- 'a' with a value of 10
- 'b' with a value of 5
MUWUL a b
Result:
- The value 'a' is 50
- The value 'b' is 5
This feature lets you divide value to another one.
This feature takes 2 parameters, hard written values, or variables.
Example:
Assuming there are values called:
- 'a' with a value of 10
- 'b' with a value of 5
DIVIDUWU a b
Result:
- The value 'a' is 2
- The value 'b' is 5
This feature lets you modulo value to another one.
This feature takes 2 parameters, hard written values, or variables.
Example:
Assuming there are values called:
- 'a' with a value of 10
- 'b' with a value of 3
MOWODULOWO a b
Result:
- The value 'a' is 1
- The value 'b' is 3