summaryrefslogtreecommitdiff
path: root/hello/hello.scm
diff options
context:
space:
mode:
Diffstat (limited to 'hello/hello.scm')
-rwxr-xr-xhello/hello.scm16
1 files changed, 0 insertions, 16 deletions
diff --git a/hello/hello.scm b/hello/hello.scm
deleted file mode 100755
index bf8dfa0..0000000
--- a/hello/hello.scm
+++ /dev/null
@@ -1,16 +0,0 @@
-(define-module (hello))
-
-(define GREETING_PREFIX "hello ")
-(define GREETING_SUFFIX "\n")
-(define DEFAULT_ADDRESSEE "world")
-
-
-(define-public hi
- (lambda* (#:optional name)
- (string-append GREETING_PREFIX (addressee name) GREETING_SUFFIX)))
-
-(define addressee
- (lambda (name)
- (if name
- name
- DEFAULT_ADDRESSEE)))