diff options
Diffstat (limited to 'net')
-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) |