8 lines
186 B
Plaintext
8 lines
186 B
Plaintext
(let [match (R.match "a" "12abc")]
|
|
(case match
|
|
((object
|
|
left "12"
|
|
match "a"
|
|
right "bc"))
|
|
(otherwise (throw "bad match result"))))
|