about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2023-08-28 23:23:27 -0500
committerCase Duckworth2023-08-28 23:23:27 -0500
commitb108d0da276da3f3ea6245b9807b813ce7d86ee1 (patch)
treeb9969f8dea156918b2ef08a96706ab1cbe2a3382
parentFix typos and errors (diff)
downloadschmaltz-b108d0da276da3f3ea6245b9807b813ce7d86ee1.tar.gz
schmaltz-b108d0da276da3f3ea6245b9807b813ce7d86ee1.zip
Fix text width
-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```