constantly
function
(constantly value)
Returns a function accepting arbitrary arguments that always returns value.
value
make-html > (def f12 (constantly 12)) it: f12 make-html > (f12 3 4 5) it: 12