|
Quote
Explanation of the quote primitive function.
QuoteThe quote primitive function pops a value from the stack, and pushes a nullary function that always returns that value onto the stack. The quote instruction is key to higher-order functional programming, and is used in the definition of basic higher-order functions such as curry. Typequote : ('a -> ( -> 'a))
|
Sign in to add a comment