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.

min

Determining the smallest of two numbers.

func uint min (
   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 smallest of two numbers.


min

Determining the smallest of two int numbers.

func uint min (
   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 smallest of two int numbers.

Related links

Source