We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ef7f6f commit 962ff86Copy full SHA for 962ff86
www/assignments/6.scrbl
@@ -5,9 +5,15 @@
5
6
@(require (for-label a86 (except-in racket ...)))
7
8
+@(require racket/port)
9
+
10
@bold{Due: @assign-deadline[6]}
11
-@(ev '(require hoax-plus))
12
+@;{ All this to silence some Makefile output on Linux -- should probably be taken care of at the Makefile level }
13
+@(ev '(begin (define p (current-output-port))
14
+ (current-output-port (open-output-string))
15
+ (require hoax-plus)
16
+ (current-output-port p)))
17
18
The goal of this assignment is to gain proficiency with our
19
representation of memory-allocated values by implementing a number of
0 commit comments