This repository has been archived on 2024-03-07. You can view files and clone it, but cannot push or open issues/pull-requests.
zarn/examples/vardecl.zn

8 lines
100 B
Plaintext
Raw Normal View History

2023-09-19 04:38:14 +00:00
(assert-fail a)
($ a 34)
2023-09-19 09:29:23 +00:00
(assert-fail (a))
2023-09-19 04:38:14 +00:00
(assert= 34 a)
($ b ($ c 9))
(assert= 9 b)
(assert= 9 c)