diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
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 |
27 | cat <<EOF | 27 | cat <<EOF |
28 | Here is a here-document in bourne shell. It performs expansion, so you can include things like $(echo "this") in. | 28 | Here is a here-document in bourne shell. It performs expansion, so you can |
29 | include things like $(echo "this") in. | ||
29 | 1 + 2 = $((1 + 2)), etc. | 30 | 1 + 2 = $((1 + 2)), etc. |
30 | EOF | 31 | EOF |
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") |
39 | Here is a schmaltz-powered text thing. It can do #,(display word), as well as arithmetic and all sorts of other things. | 40 | Here is a schmaltz-powered text thing. It can do #,(display word), as well as |
41 | arithmetic and all sorts of other things. | ||
40 | #,(import (scheme inexact)) | 42 | #,(import (scheme inexact)) |
41 | The square root of 13 is #,(sqrt 13), etc. | 43 | The square root of 13 is #,(sqrt 13), etc. |
42 | ``` | 44 | ``` |