2016-10-12 21:40:11 +00:00
|
|
|
#! /bin/sh
|
|
|
|
# -*-scheme-*-
|
2016-12-11 07:50:51 +00:00
|
|
|
MES_ARENA=${MES_ARENA-5000000}
|
|
|
|
export MES_ARENA
|
2016-12-07 19:26:41 +00:00
|
|
|
prefix=module/
|
|
|
|
cat $prefix/mes/base-0.mes $0 /dev/stdin | $(dirname $0)/mes $MES_FLAGS "$@"
|
2016-10-17 16:24:40 +00:00
|
|
|
#paredit:|
|
2016-10-12 21:40:11 +00:00
|
|
|
exit $?
|
|
|
|
!#
|
2016-07-25 12:39:56 +00:00
|
|
|
|
|
|
|
;;; Mes --- Maxwell Equations of Software
|
|
|
|
;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
|
|
|
|
;;;
|
2016-10-12 21:40:11 +00:00
|
|
|
;;; repl.mes: This file is part of Mes.
|
2016-07-25 12:39:56 +00:00
|
|
|
;;;
|
|
|
|
;;; 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/>.
|
|
|
|
|
2016-10-12 21:40:11 +00:00
|
|
|
(mes-use-module (mes scm))
|
2016-12-07 22:27:44 +00:00
|
|
|
(mes-use-module (mes syntax))
|
2016-11-02 09:36:09 +00:00
|
|
|
(mes-use-module (mes repl))
|
2016-10-30 15:18:59 +00:00
|
|
|
|
2016-10-12 21:40:11 +00:00
|
|
|
(repl)
|
|
|
|
()
|