15 lines
329 B
Scheme
15 lines
329 B
Scheme
#! /usr/bin/env sh
|
|
exec guile -e '(@ (bible-app) main)' -s "$0" "$@"
|
|
!#
|
|
|
|
(define-module (bible-app)
|
|
#:use-module (bible-tools)
|
|
#:use-module (bible-tools latex-export)
|
|
#:use-module (bible-tools count-words)
|
|
#:use-module (srfi srfi-1)
|
|
#:use-module (srfi srfi-26)
|
|
#:export (main))
|
|
|
|
(define (main args)
|
|
(display args))
|