* Use "'()" instead of "()" in optargs.scm.
[bpt/guile.git] / ice-9 / and-let-star.scm
1 ;;;; and-let-star.scm --- and-let* syntactic form (draft SRFI-2) for Guile
2 ;;;; written by Michael Livshin <mike@olan.com>
3 ;;;;
4 ;;;; Copyright (C) 1999 Free Software Foundation, Inc.
5 ;;;;
6 ;;;; This program is free software; you can redistribute it and/or modify
7 ;;;; it under the terms of the GNU General Public License as published by
8 ;;;; the Free Software Foundation; either version 2, or (at your option)
9 ;;;; any later version.
10 ;;;;
11 ;;;; This program is distributed in the hope that it will be useful,
12 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 ;;;; GNU General Public License for more details.
15 ;;;;
16 ;;;; You should have received a copy of the GNU General Public License
17 ;;;; along with this software; see the file COPYING. If not, write to
18 ;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 ;;;; Boston, MA 02111-1307 USA
20
21 (define-module (ice-9 and-let-star))
22
23 (defmacro and-let* (vars . body)
24
25 (define (expand vars body)
26 (cond
27 ((null? vars)
28 `(begin ,@body))
29 ((pair? vars)
30 (let ((exp (car vars)))
31 (cond
32 ((pair? exp)
33 (cond
34 ((null? (cdr exp))
35 `(and ,(car exp) ,(expand (cdr vars) body)))
36 (else
37 (let ((var (car exp))
38 (val (cadr exp)))
39 `(let (,exp)
40 (and ,var ,(expand (cdr vars) body)))))))
41 (else
42 `(and ,exp ,(expand (cdr vars) body))))))
43 (else
44 (error "not a proper list" vars))))
45
46 (expand vars body))
47
48 (export-syntax and-let*)