You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
329 B
14 lines
329 B
#! /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))
|
|
|