Skip to content

AngelHelper

FedoraGuy edited this page May 16, 2026 · 3 revisions

sum(a, b)

Description

With this function you can add a value to another value, this returns the sum of the previous two values.

Example

a = 3
a = sum(a,4)

Example returns

-> a = 7

sub(a, b)

Description

With this function you can substract a value to another value, this returns the substraction of the previous two values.

Example

a = 10
a = sub(a,5)

Example returns

-> a = 5

mul(a, b)

Description

With this function you can multiply a value to another value, this returns the multiplication of the previous two values.

Example

a = 3
a = mul(a,5)

Example returns

-> a = 15

div(a, b)

Description

With this function you can divide a value to another value, this returns the divison of the previous two values.

Example

a = 50
a = div(a,2)

Example returns

-> a = 25