-
Notifications
You must be signed in to change notification settings - Fork 0
AngelHelper
FedoraGuy edited this page May 16, 2026
·
3 revisions
With this function you can add a value to another value, this returns the sum of the previous two values.
a = 3
a = sum(a,4)
-> a = 7
With this function you can substract a value to another value, this returns the substraction of the previous two values.
a = 10
a = sub(a,5)
-> a = 5
With this function you can multiply a value to another value, this returns the multiplication of the previous two values.
a = 3
a = mul(a,5)
-> a = 15
With this function you can divide a value to another value, this returns the divison of the previous two values.
a = 50
a = div(a,2)
-> a = 25