#!/usr/bin/env sh
# -*- wisp -*-
exec guile -L $(dirname $(dirname $(realpath "$0"))) --language=wisp -e '(@@ (examples cli) main)' -s "$0" "$@"
; !#
;; FIXME: This works in the repl but it does not work as file.
define-module : examples cli
. #:use-module : ice-9 match
define : main args
match args
: prog ; just the program name, empty call
display args
newline
main '("foo")