11 lines
204 B
Plaintext
Raw Permalink Normal View History

2022-04-07 18:33:05 +02:00
;; In Emacs, open this file in -*- Scheme -*- mode
;; Test the "rec" expression
(@byte-write 65)
(rec loop ((i 0) (j 65))
(if (@= j 0)
(@byte-write i)
(loop (@+ i 1) (@- j 1))))