Is there anyway to turn off Parenscript's implicit Return?
I'm trying to write the following code:
function () = { dialog.show();};
But Parenscript inserts an implicit return:
(ps (lambda ()
(chain dialog (show))))
=>
function () = { return dialog.show();};
You could use
(values)
:This should probably return
undefined
(but it actually returnsnull
). If you really needundefined
, you have it: