mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-18 21:29:18 +02:00
11 lines
205 B
Scheme
11 lines
205 B
Scheme
(import (scheme base)
|
|
(scheme write)
|
|
(scheme cyclone pretty-print)
|
|
(2))
|
|
|
|
(pretty-print `(
|
|
,(and-let* ((x 1) (y 2))
|
|
(+ x y))
|
|
,(and-let* ((x 1) (y 2) (#f))
|
|
(+ x y))
|
|
))
|