aboutsummaryrefslogtreecommitdiff
path: root/chap2/part1.rkt
diff options
context:
space:
mode:
Diffstat (limited to 'chap2/part1.rkt')
-rw-r--r--chap2/part1.rkt3
1 files changed, 3 insertions, 0 deletions
diff --git a/chap2/part1.rkt b/chap2/part1.rkt
index 766bbca..e7233f2 100644
--- a/chap2/part1.rkt
+++ b/chap2/part1.rkt
@@ -1,4 +1,6 @@
#lang sicp
+(#%require (only racket/base print-as-expression))
+(print-as-expression #f)
;; Chapter 2
;; Building Abstractions with Data
@@ -77,6 +79,7 @@
(print-rat one-half)
(print-rat (add-rat one-half one-third))
(print-rat (add-rat one-third one-third))
+(newline)
#| 2.2 |#