about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--README.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md index 7307850..ff7f66b 100644 --- a/README.md +++ b/README.md
@@ -25,7 +25,8 @@ Here-documents, in shell and other scripts, are similar in form (I assume that C
25 25
26```sh 26```sh
27cat <<EOF 27cat <<EOF
28Here is a here-document in bourne shell. It performs expansion, so you can include things like $(echo "this") in. 28Here is a here-document in bourne shell. It performs expansion, so you can
29include things like $(echo "this") in.
291 + 2 = $((1 + 2)), etc. 301 + 2 = $((1 + 2)), etc.
30EOF 31EOF
31``` 32```
@@ -36,7 +37,8 @@ Schmaltz attempts to fix all of these problems. In fact, within a schmaltz-power
36 37
37``` 38```
38#,(define word "expansion") 39#,(define word "expansion")
39Here is a schmaltz-powered text thing. It can do #,(display word), as well as arithmetic and all sorts of other things. 40Here is a schmaltz-powered text thing. It can do #,(display word), as well as
41arithmetic and all sorts of other things.
40#,(import (scheme inexact)) 42#,(import (scheme inexact))
41The square root of 13 is #,(sqrt 13), etc. 43The square root of 13 is #,(sqrt 13), etc.
42``` 44```