|
|
|
|
|
by wz1000
4037 days ago
|
|
> "return()" is in no way a function. Ah, but in Haskell, `return` is a function, though it shares only a few similarities with with its counterpart in C-like languages. However, when using continuations or a continuation passing style, the continuation is a function that behaves almost exactly like traditional return when called! (define (multiply x y return)
(return (* x y)))
|
|