From 97a42a6b2b627217bf29b8e63037e2422a572bce Mon Sep 17 00:00:00 2001 From: TakeV Date: Wed, 13 Dec 2023 10:01:17 -0500 Subject: [PATCH] Add guile-repl script to quickly launch a guile repl It also loads the project path and listens on the default port --- hall.scm | 3 ++- scripts/guile-repl | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100755 scripts/guile-repl diff --git a/hall.scm b/hall.scm index e3a8fd5..30631c9 100644 --- a/hall.scm +++ b/hall.scm @@ -19,7 +19,8 @@ (programs ((directory "scripts" - ((text-file "launch-dev-shell"))))) + ((text-file "launch-dev-shell") + (text-file "guile-repl"))))) (documentation ((directory "doc" ((texi-file "guile-docs"))) (text-file "COPYING") diff --git a/scripts/guile-repl b/scripts/guile-repl new file mode 100755 index 0000000..ffcf5b6 --- /dev/null +++ b/scripts/guile-repl @@ -0,0 +1,3 @@ +#!/bin/sh + +guile --listen -L . \ No newline at end of file