about summary refs log tree commit diff
path: root/bin
diff options
context:
space:
mode:
authorPjotr Prins2025-01-01 07:07:00 -0600
committerPjotr Prins2025-01-01 07:07:00 -0600
commit2089148bfc715b0d9a34be43836f525e70311090 (patch)
tree3d7e6bcc2a2726244315ab47fcad5b24bc5bf783 /bin
parent1220a98a993f4a8d92f4076dd3c82ea5afbb2659 (diff)
downloadpangemma-2089148bfc715b0d9a34be43836f525e70311090.tar.gz
Started on pangemma
Diffstat (limited to 'bin')
-rwxr-xr-xbin/pangemma14
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/pangemma b/bin/pangemma
new file mode 100755
index 0000000..414107b
--- /dev/null
+++ b/bin/pangemma
@@ -0,0 +1,14 @@
+#!/bin/sh
+# -*- mode: scheme; -*-
+exec guile --no-auto-compile -e main -s "$0" "$@"
+!#
+
+(use-modules (ice-9 match)
+             (srfi srfi-9)
+             (srfi srfi-9 gnu))
+
+(define (main args)
+  (begin
+    (display "hello")
+    (newline)
+    ))