mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-24 04:25:06 +02:00
8 lines
183 B
Scheme
8 lines
183 B
Scheme
(import
|
|
(scheme base)
|
|
(scheme write)
|
|
(match-test-lib)
|
|
)
|
|
|
|
(display (match (list 1 2 3) ((a b c) b)) )(newline)
|
|
(display (match (list 1 2 3) (`(1 ,b ,c) (list b c))) )(newline)
|