JanetDocsPlaygroundI'm feeling luckyGitHub sign in

max



    function
    boot.janet on line 727, column 1

    (max & args)

    Returns the numeric maximum of the arguments.


1 exampleSign in to add an example
Loading...
(max 1 2 3)             # => 3
(max (splice [1 2 3]))  # => 3
(max ;[1 2 3])          # => 3
(apply max [1 2 3])     # => 3
cellularmitosisPlayground