(def color (r g b) (with (c (table) f (fn (x) (if (< x 0) 0 (> x 255) 255 x))) (= (c 'r) (f r) (c 'g) (f g) (c 'b) (f b)) c))
From html.arc ©
html.arc