Prepare for 0.1 release: new directory structure.
[mes.git] / scripts / repl.mes
1 #! /bin/sh
2 # -*-scheme-*-
3 cat $($(dirname $0)/include.mes $0) $0 /dev/stdin | ./mes
4 exit $?
5 !#
6
7 ;;; Mes --- Maxwell Equations of Software
8 ;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
9 ;;;
10 ;;; repl.mes: This file is part of Mes.
11 ;;;
12 ;;; Mes is free software; you can redistribute it and/or modify it
13 ;;; under the terms of the GNU General Public License as published by
14 ;;; the Free Software Foundation; either version 3 of the License, or (at
15 ;;; your option) any later version.
16 ;;;
17 ;;; Mes is distributed in the hope that it will be useful, but
18 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ;;; GNU General Public License for more details.
21 ;;;
22 ;;; You should have received a copy of the GNU General Public License
23 ;;; along with Mes.  If not, see <http://www.gnu.org/licenses/>.
24
25 (mes-use-module (mes base-0))
26 (mes-use-module (mes base))
27 (mes-use-module (mes quasiquote))
28 (mes-use-module (mes let))
29 (mes-use-module (mes scm))
30 (mes-use-module (mes syntax))
31 (mes-use-module (mes let-syntax))
32 (mes-use-module (srfi srfi-0))
33 (mes-use-module (mes match))
34 (mes-use-module (mes repl))
35
36 (repl)
37 ()