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