Added example scripts.
[scratchy.git] / examples / name.scm
diff --git a/examples/name.scm b/examples/name.scm
new file mode 100644 (file)
index 0000000..f99640e
--- /dev/null
@@ -0,0 +1,7 @@
+;; Query function that simply returns a greeting.
+
+(lambda (arg)
+  (import (chicken string))
+
+  (list
+   (conc "Hello, " arg ", nice to meet you!")))