Skip to content

Commit 962ff86

Browse files
committed
Try to silence some Makefile output.
1 parent 1ef7f6f commit 962ff86

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

www/assignments/6.scrbl

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,15 @@
55

66
@(require (for-label a86 (except-in racket ...)))
77

8+
@(require racket/port)
9+
810
@bold{Due: @assign-deadline[6]}
911

10-
@(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)))
1117

1218
The goal of this assignment is to gain proficiency with our
1319
representation of memory-allocated values by implementing a number of

0 commit comments

Comments
 (0)