function
boot.janet on line 821 , column 1
(min & args )
Returns the numeric minimum of the arguments.
(min 1 2 3 ) # => 1
(min (splice [1 2 3 ])) # => 1
(min ;[1 2 3 ]) # => 1
(apply min [1 2 3 ]) # => 1