(fn1 ..body)
  body: zero or more forms
M

Defines a function with one argument.

(fn1 x _ z) is equivalent to (fn (arg) x arg z).

The macro recursively searches through all of its body forms, replacing the _ symbol with a gensymmed argument name.

See also: fn0

fn0
no-op