1 2 3 4 5 6 7 8 9 10 11 12 13
--- name: "max" module: "math" section: "Numeric Utilities" --- Return the largest of 1 or more numbers (the no-arg case errors). ```sema (max 1 2 3) ;; => 3 (max 5) ;; => 5 (max) ;; error: Arity error: max expects 1+ args, got 0 ```