9 lines
232 B
Scheme
9 lines
232 B
Scheme
|
; Copyright (c) 1994 by Richard Kelsey. See file COPYING.
|
||
|
|
||
|
|
||
|
(define (test x i)
|
||
|
(let ((m (allocate-memory 10)))
|
||
|
(unsigned-byte-set! (+ m i) x)
|
||
|
(word-set! (+ m i) (+ 1 (word-ref (+ m i))))
|
||
|
(unsigned-byte-ref (+ m i))))
|