2b577eaee0
* module/mes/base-0.mes (mes-use-module): Implement. * module/mes: Update users. * HACKING: Update. * NEWS: Update. * configure (main): Use shell expansion for prefix. * make/install.make (install): Substitute prefix.
73 lines
2.2 KiB
Scheme
73 lines
2.2 KiB
Scheme
;;; -*-scheme-*-
|
|
|
|
;;; Mes --- Maxwell Equations of Software
|
|
;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
|
|
;;;
|
|
;;; This file is part of Mes.
|
|
;;;
|
|
;;; Mes is free software; you can redistribute it and/or modify it
|
|
;;; under the terms of the GNU General Public License as published by
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
;;; your option) any later version.
|
|
;;;
|
|
;;; Mes is distributed in the hope that it will be useful, but
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;;; GNU General Public License for more details.
|
|
;;;
|
|
;;; You should have received a copy of the GNU General Public License
|
|
;;; along with Mes. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
;;; Commentary:
|
|
|
|
;;; let.mes is loaded after base and quasiquote. It provides
|
|
;;; let, let* and named let.
|
|
|
|
;;; Code:
|
|
|
|
(mes-use-module (mes base))
|
|
(mes-use-module (mes quasiquote))
|
|
|
|
(define-macro (xsimple-let bindings rest)
|
|
`(,`(lambda ,(map car bindings) ,@rest)
|
|
,@(map cadr bindings)))
|
|
|
|
(define-macro (xnamed-let name bindings rest)
|
|
`(simple-let ((,name *unspecified*))
|
|
(set! ,name (lambda ,(map car bindings) ,@rest))
|
|
(,name ,@(map cadr bindings))))
|
|
|
|
;; IF
|
|
(define-macro (let bindings-or-name . rest)
|
|
`(if ,(symbol? bindings-or-name) ;; IF
|
|
(xnamed-let ,bindings-or-name ,(car rest) ,(cdr rest))
|
|
(xsimple-let ,bindings-or-name ,rest)))
|
|
|
|
(define (expand-let* bindings body)
|
|
(if (null? bindings)
|
|
`((lambda () ,@body))
|
|
`((lambda (,(caar bindings))
|
|
,(expand-let* (cdr bindings) body))
|
|
,@(cdar bindings))))
|
|
|
|
(define-macro (let* bindings . body)
|
|
(expand-let* bindings body))
|
|
|
|
(define (unspecified-bindings bindings params)
|
|
(if (null? bindings) params
|
|
(unspecified-bindings
|
|
(cdr bindings)
|
|
(append params (cons (cons (caar bindings) '(*unspecified*)) '())))))
|
|
|
|
(define (letrec-setters bindings setters)
|
|
(if (null? bindings) setters
|
|
(letrec-setters (cdr bindings)
|
|
(append setters
|
|
(cons (cons 'set! (car bindings)) '())))))
|
|
|
|
(define-macro (letrec bindings . body)
|
|
`(let ,(unspecified-bindings bindings '())
|
|
,@(letrec-setters bindings '())
|
|
,@body))
|
|
|