X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=scratchy.git;a=blobdiff_plain;f=examples%2Fname.scm;fp=examples%2Fname.scm;h=f99640e35fb99352fa896e3f9700c3b7896f156c;hp=0000000000000000000000000000000000000000;hb=5f40dae3f5566a9d4068b32d0615367c66b49b07;hpb=307887439e723047cab1bc5a2572cb89e2f06630 diff --git a/examples/name.scm b/examples/name.scm new file mode 100644 index 0000000..f99640e --- /dev/null +++ b/examples/name.scm @@ -0,0 +1,7 @@ +;; Query function that simply returns a greeting. + +(lambda (arg) + (import (chicken string)) + + (list + (conc "Hello, " arg ", nice to meet you!")))