Control Functions.bind

Binds the first argument to a body.

Arguments

The

value
to bind.
body0
is the callable to bind the value to.

Return values

body1
is the resulting callable.

Example

"sl/control" useFile plusThree: 3 [ + ] bind; 1 plusThree print
Output:
4