Skip to content

Commit e38d1eb

Browse files
committed
Fix dumb bug.
1 parent f622b44 commit e38d1eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

langs/dupe/interp-prim-bits.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
(match op
88
['add1 (+ b (value->bits 1))]
99
['sub1 (- b (value->bits 1))]
10-
['zero? (= b (value->bits 0))]))
10+
['zero? (if (zero? b) (value->bits #t) (value->bits #f))]))

0 commit comments

Comments
 (0)