Skip to content

Instantly share code, notes, and snippets.

View zxymike93's full-sized avatar
😺
Happy Hacking

Mike Zheng zxymike93

😺
Happy Hacking
View GitHub Profile
@zxymike93
zxymike93 / digital-circuit.rkt
Created April 29, 2020 16:25
Digital circuit simulator sample code from sicp.
#lang sicp
(define (call-each procs)
(if (not (null? procs))
(begin ((car procs))
(call-each (cdr procs)))))
;; QUEUE