(Arne Babenhauserheide)
2014-12-24: note that curly infix is now activated by default. note that curly infix is now activated by default.
diff --git a/README b/README
--- a/README
+++ b/README
@@ -40,11 +40,10 @@ Usage
Wisp and curly infix (SRFI-105)
-------------------------------
-Wisp treats braces "{}" the same as parentheses "()" and square brackets "[]", so you can use it with curly infix ([SRFI-105](http://srfi.schemers.org/srfi-105/srfi-105.html)) to get more customary math expressions. In Guile Scheme with Wisp you can activate curly infix using the following line `. #!curly-infix ` (with a final space!)
+Wisp treats braces "{}" the same as parentheses "()" and square brackets "[]", so you can use it with curly infix ([SRFI-105](http://srfi.schemers.org/srfi-105/srfi-105.html)) to get more customary math expressions. In Guile Scheme with Wisp, curly infix is activated by default.
<a name="fibonacci"></a>By combining curly-infix and wisp, the well-known Fibonacci sequence can be defined as follows:
- . #!curly-infix
define : fibonacci n
let rek : (i 0) (u 1) (v 1)
if {i >= {n - 2}}