wisp
 
(Arne Babenhauserheide)
2014-05-02: srfi: better intro-code.

srfi: better intro-code.

diff --git a/docs/srfi.org b/docs/srfi.org
--- a/docs/srfi.org
+++ b/docs/srfi.org
@@ -12,16 +12,15 @@ Wisp expressions can include any s-expre
 
 #+html: <table><tr><th>wisp</th><th>s-exp</th></tr><tr><td>
 #+BEGIN_SRC wisp
-  + 5
-    ,* 4 3
-    . 2 1
+  define : hello who
+    format #t "~A ~A!\n"
+            . "Hello" who
 #+END_SRC
 #+html: </td><td>
 #+BEGIN_SRC scheme
-  (+ 5
-    (* 4 3)
-    2 1)
-  
+  (define (hello who)
+    (format #t "~A ~A!\n"
+            "Hello" who))
 #+END_SRC
 #+html: </td></tr></table>