Parenscript and implicit Return

201 Views Asked by At

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();};
2

There are 2 best solutions below

0
On BEST ANSWER

You could use (values):

(ps (lambda ()
      (chain dialog (show))
      (values)))

This should probably return undefined (but it actually returns null). If you really need undefined, you have it:

(ps (lambda ()
      (chain dialog (show))
      undefined))
0
On

No. (CoffeeScript works the same way, too.) This is a feature, not a bug. Explicitly return undefined if you really care.