How can I disable the implicit return in Parenscript?
I am attempting to write the code below:
function() = { dialog.show();};
However, Parenscript automatically adds a return statement:
(ps (lambda ()
(chain dialog(show))))
=>
function () = { return dialog.show();};