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.
46 lines
817 B
Scheme
Executable file
46 lines
817 B
Scheme
Executable file
#! /bin/sh
|
|
# -*-scheme-*-
|
|
# ***REMOVE THIS BLOCK COMMENT INITIALLY***
|
|
echo ' ()' | cat $0 /dev/stdin | $(dirname $0)/../scripts/mes $MES_FLAGS "$@"
|
|
#paredit:||
|
|
exit $?
|
|
!#
|
|
|
|
;; FIXME
|
|
(gc)
|
|
|
|
|
|
0
|
|
cons
|
|
(cons 0 1)
|
|
(display 0) (newline)
|
|
#t
|
|
#f
|
|
(display #t) (newline)
|
|
(display #f) (newline)
|
|
'foo
|
|
(display 'foo) (newline)
|
|
(display #x16) (newline)
|
|
(display #\A) (newline)
|
|
(display #\newline) (newline)
|
|
(display 'foo)(newline)
|
|
(display '(foo))(newline)
|
|
(display '('foo))(newline)
|
|
(display (cdr '(car . cdr))) (newline)
|
|
(display "foo bar") (newline)
|
|
;;barf
|
|
#!
|
|
barf
|
|
!#
|
|
(display `(display ,display)) (newline)
|
|
(display `(display ,@'(string port))) (newline)
|
|
(display #(0 1 2)) (newline)
|
|
(display (list '(foo
|
|
#! boo !#
|
|
;;(bb 4)
|
|
)
|
|
))
|
|
(newline)
|
|
|
|
;; TODO: syntax, unsyntax, unsyntax-splicing
|