Do not let any software impress you!

Only let it convince your intellect.
Slider img 1
Do not look for a business paradise!

It is a waste of time.
Slider img 2
Only yourself can push you uphill.

There is no easy road to prizes.
Slider img 3
Productivity is the name of the game.

And you have to conquer it.
Slider img 4
As long as you understand it,

you will start to build your know-how.
Slider img 5
We can help with that.

We have the tools and the method.
Slider img 6

Numeric handling predefined functions



       val ( expression )


This function evaluates the expression as a number.

       Round ( num )


This function rounds the number num to the nearest integer.

       RoundTo ( num, mode )


This function rounds the number num to nearest integer (if mode is “rmNearest“), to the smaller integer (if mode = “rmDown“), to then bigger integer (if mode = “rmUp“) and truncated (if mode = “rmTruncate“).

       Int ( num )


This function returns the integer part of the number num.

       Abs ( num )


This function returns the absolute value of the number num.

       Mod ( num1, num2 )


This function returns the module of the integer division of numbers num1 and num2.

       Random ( num )


This function returns a random number using as a generator the number num.

       Max ( num1, num2 )


This function returns the maximum of numbers num1 and num2.

       Min ( num1, num2 )


This function returns the minimum of numbers num1 and num2.

       Div ( num1, num2 )


This function returns the result of integer division between num1 and num2.

       eval ( expr )


This function returns the value by evaluating the expression expr.