EnglishРусский  
The project is closed! You can look at a new scripting language. It is available on GitHub.
Also, try our open source cross-platform automation software.

Ads

Installer and installation software
Commercial and Freeware installers.

max

Determining the largest of two numbers.

func uint max (
   uint left,
   uint right
)

Parameters

left The first compared number of the uint type.
right The second compared number of the uint type.

Return value

The largest of two numbers.


max

Determining the largest of two int numbers.

func uint max (
   int left,
   int right
)

Parameters

left The first compared number of the int type.
right The second compared number of the int type.

Return value

The largest of two int numbers.

Related links

Source