Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 394 Bytes

File metadata and controls

21 lines (16 loc) · 394 Bytes

Math::Min

Math::Min(x, y, …​): number

Returns minimal value from given numbers or array(s) of numbers.

Table 1. Parameters

x, y, …​

number, Array

Comma separated numbers or array(s) of numbers

Return

Minimal value.

println(Math::Min(2, 3, 4, 8)); // Will print "2"