Skip to content

Commit a075169

Browse files
committed
minorly
1 parent d5e9552 commit a075169

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

scheme/16/25.ss

+2-4
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,11 @@
99

1010
;; create stream of machine's clock output
1111
(define (clock-signal n)
12-
(define machine
13-
(assembunny program))
12+
(define machine (assembunny program))
1413
(set-register! machine 'a n)
1514
(let lp ()
1615
(run-until-clock machine)
17-
(s:cons (read-clock machine)
18-
(lp))))
16+
(s:cons (read-clock machine) (lp))))
1917

2018
(define (solution)
2119
(define N 8)

0 commit comments

Comments
 (0)