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 b8e76da commit bd62c1bCopy full SHA for bd62c1b
langs/hustle/interp-heap-bits.rkt
@@ -20,7 +20,6 @@
20
(match e
21
[(Lit d) (cons h (value->bits d))]
22
[(Eof) (cons h (value->bits eof))]
23
- [(Empty) (cons h (value->bits '()))]
24
[(Var x) (cons h (lookup r x))]
25
[(Prim0 'void) (cons h (value->bits (void)))]
26
[(Prim0 'read-byte) (cons h (value->bits (read-byte)))]
langs/hustle/interp-heap.rkt
@@ -30,7 +30,6 @@
30
(define (interp-env-heap e r h)
31
32
[(Lit d) (cons h d)]
33
- [(Empty) (cons h '())]
34
[(Eof) (cons h eof)]
35
36
[(Prim0 'void) (cons h (void))]
0 commit comments