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