(Arne Babenhauserheide)
2014-02-11: note that curly infix starting a line must be prefixed with . note that curly infix starting a line must be prefixed with .
diff --git a/README b/README --- a/README +++ b/README @@ -48,6 +48,11 @@ The fibonacci-example above can then be . v rek {i + 1} v {u + v} +If you want to use a curly-infix expression starting a line, you have to prefix it with a dot: + + . {1 + 1} + ; = 2 + Notes ----- diff --git a/examples/fib.w b/examples/fib.w --- a/examples/fib.w +++ b/examples/fib.w @@ -25,7 +25,9 @@ define : fibonacci n . v rek {i + 1} v {u + v} - +display + . {1 + 1} +newline ;; Due to the compatibility with curly-infix, the following is no longer possible.