2018-01-01 14:53:13 +00:00
|
|
|
#! /bin/sh
|
|
|
|
# -*-scheme-*-
|
2018-04-07 16:27:26 +00:00
|
|
|
MES=${MES-$(dirname $0)/../src/mes}
|
2018-04-14 20:06:28 +00:00
|
|
|
#export MES_ARENA=${MES_ARENA-40000}
|
|
|
|
$MES $MES_FLAGS "$@" < $0
|
2018-01-01 14:53:13 +00:00
|
|
|
exit $?
|
|
|
|
!#
|
|
|
|
|
|
|
|
;;; -*-scheme-*-
|
|
|
|
|
|
|
|
;;; Mes --- Maxwell Equations of Software
|
2017-11-21 18:22:26 +00:00
|
|
|
;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2018-01-01 14:53:13 +00:00
|
|
|
;;;
|
|
|
|
;;; 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/>.
|
|
|
|
|
|
|
|
(mes-use-module (mes test))
|
2018-01-25 05:58:44 +00:00
|
|
|
(mes-use-module (mes syntax))
|
2018-01-01 14:53:13 +00:00
|
|
|
|
|
|
|
(pass-if "first dummy" #t)
|
|
|
|
(pass-if-not "second dummy" #f)
|
|
|
|
|
2018-01-25 05:58:44 +00:00
|
|
|
(define-syntax sr:when
|
|
|
|
(syntax-rules ()
|
|
|
|
((sr:when condition exp ...)
|
|
|
|
(if condition
|
|
|
|
(begin exp ...)))))
|
|
|
|
|
|
|
|
(sr:when #t
|
|
|
|
(display "hallo\n")
|
|
|
|
(display "daar\n"))
|
|
|
|
|
|
|
|
|
|
|
|
;; FIXME: macro inside let
|
|
|
|
(define-syntax sr:when
|
|
|
|
(syntax-rules ()
|
|
|
|
((sc:when condition exp ...)
|
|
|
|
(if condition
|
|
|
|
(begin exp ...)))))
|
|
|
|
|
2018-01-01 14:53:13 +00:00
|
|
|
(pass-if "define-syntax when"
|
|
|
|
(sequal?
|
|
|
|
(let ()
|
|
|
|
(define-syntax sr:when
|
|
|
|
(syntax-rules ()
|
|
|
|
((sc:when condition exp ...)
|
|
|
|
(if condition
|
|
|
|
(begin exp ...)))))
|
|
|
|
(let ()
|
|
|
|
(sr:when #t "if not now, then?")))
|
|
|
|
"if not now, then?"))
|
|
|
|
|
2018-01-25 05:58:44 +00:00
|
|
|
;; FIXME: macro inside let
|
|
|
|
(define-syntax-rule (sre:when c e ...)
|
|
|
|
(if c (begin e ...)))
|
|
|
|
|
2018-01-01 14:53:13 +00:00
|
|
|
(pass-if "define-syntax-rule"
|
|
|
|
(sequal?
|
|
|
|
(let ()
|
|
|
|
(define-syntax-rule (sre:when c e ...)
|
|
|
|
(if c (begin e ...)))
|
|
|
|
(let ()
|
|
|
|
(sre:when #t "if not now, then?")))
|
|
|
|
"if not now, then?"))
|
|
|
|
|
|
|
|
(pass-if-equal "syntax-rules plus"
|
|
|
|
(+ 1 2 3)
|
|
|
|
(let ()
|
|
|
|
(define-syntax plus
|
|
|
|
(syntax-rules ()
|
|
|
|
((plus x ...) (+ x ...))))
|
|
|
|
(plus 1 2 3)))
|
|
|
|
|
|
|
|
(result 'report)
|