mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-18 21:29:18 +02:00
10 lines
164 B
Scheme
10 lines
164 B
Scheme
(import (scheme base)
|
|
(scheme write)
|
|
(scheme cyclone pretty-print)
|
|
(1))
|
|
|
|
(pretty-print `(
|
|
,(iota 10)
|
|
,(iota 10 5)
|
|
,(iota 10 5 10)
|
|
))
|