|
From: | Bozhidar Batsov |
Subject: | Re: if-let and when-let: parallel or sequential |
Date: | Mon, 11 Aug 2014 15:01:26 +0300 |
On August 10, 2014 at 6:23:25 PM, Stefan Monnier (address@hidden) wrote:
if-let and when-let don’t make much sense with more than one binding form. Other lisps (like Clojure) would raise an exception if you try to bind more than a single form. ;; good (if-let ((x (something))) …) ;; error (if-let ((x (something)) (y (something-else))) …) I’d suggest we do the same. |
[Prev in Thread] | Current Thread | [Next in Thread] |