#!/bin/sh # must be run from this directory guile=${GUILE-../../libguile/guile} set -e # # simple-hello.scm # $guile -s simple-hello.scm > TMP cat < TMP echo "Hello, World!" | diff -u - TMP rm -f TMP $guile -s hello --version > TMP echo "hello 0.0.1" | diff -u - TMP rm -f TMP $guile -s hello --help > TMP cat <