diff options
-rw-r--r-- | README.md | 8 | ||||
-rwxr-xr-x | run.sh | 2 | ||||
-rw-r--r-- | wake-up.scm (renamed from depre/main.scm) | 3 |
3 files changed, 3 insertions, 10 deletions
@@ -9,14 +9,8 @@ You need to have `guile` installed. ## Running -Just run the script provided - -``` -$ ./run.sh -``` - Or call with guile: ``` -$ guile depre/main.scm +$ guile wake-up.scm ``` @@ -1,2 +0,0 @@ -#!/usr/bin/env sh -guile --r6rs --no-debug -s depre/main.scm diff --git a/depre/main.scm b/wake-up.scm index 09f6418..4eb38ad 100644 --- a/depre/main.scm +++ b/wake-up.scm @@ -3,7 +3,8 @@ #:use-module (ice-9 textual-ports)) ;; Clean indentation from strings -(read-enable 'hungry-eol-escapes) +(eval-when (expand load eval) + (read-enable 'hungry-eol-escapes)) ;; Random seed (set! *random-state* (random-state-from-platform)) |