release 0.1.0
This commit is contained in:
commit
30d94536a9
90 changed files with 7722 additions and 0 deletions
8
benchmarks/case1/main.owa
Normal file
8
benchmarks/case1/main.owa
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
(seq
|
||||
(def fib (lambda [n]
|
||||
(match n
|
||||
(0 0)
|
||||
(1 1)
|
||||
(_ (+ (this (- n 1)) (this (- n 2)))))))
|
||||
(trace (fib 12))
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue