diff options
author | rsiddharth <s@ricketyspace.net> | 2019-07-15 19:19:10 -0400 |
---|---|---|
committer | rsiddharth <s@ricketyspace.net> | 2019-07-15 19:19:10 -0400 |
commit | 2f4626b7ff7c0b41658a8d41f81e56eac8befc7b (patch) | |
tree | 16d9bd202d28740b430c90c1cb324ba67ebf30df | |
parent | b0e69993807380ca9dcecb00533bd20f953c0b25 (diff) |
net/ricketyspace/sicp/two/twentynine.scm: Fix spacing in example.
-rw-r--r-- | net/ricketyspace/sicp/two/twentynine.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/net/ricketyspace/sicp/two/twentynine.scm b/net/ricketyspace/sicp/two/twentynine.scm index 073f55e..cc1380c 100644 --- a/net/ricketyspace/sicp/two/twentynine.scm +++ b/net/ricketyspace/sicp/two/twentynine.scm @@ -38,10 +38,11 @@ ;;; Guile REPL ;;; -;;; scheme@(guile-user)> (make-mobile (make-branch 3 45) -;;; (make-branch 4 -;;; (make-mobile (make-branch 5 50) -;;; (make-branch 1 20)))) +;;; scheme@(guile-user)> (make-mobile +;;; (make-branch 3 45) +;;; (make-branch 4 +;;; (make-mobile (make-branch 5 50) +;;; (make-branch 1 20)))) ;;; $11 = ((3 45) (4 ((5 50) (1 20)))) ;;; scheme@(guile-user)> (left-branch $11) ;;; $12 = (3 45) |