Skip to content

Commit 96694d3

Browse files
committed
Fix struct defn in assign 3 write-up (to match starter code).
1 parent fe11c07 commit 96694d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

www/assignments/3.scrbl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Here's the AST definition for the added primitives and @racket[cond]:
8282
;; ...
8383
;; | 'abs | '- | 'not
8484

85-
(struct Cond (cs e) #:prefab)
85+
(struct Cond (cs es el) #:prefab)
8686
)
8787

8888
There is one new kind of expression constructor: @racket[Cond]. A

0 commit comments

Comments
 (0)