release 0.1.0
This commit is contained in:
commit
30d94536a9
90 changed files with 7722 additions and 0 deletions
25
modules/core/main.owa
Normal file
25
modules/core/main.owa
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
(builtins.seq
|
||||
(builtins.def include builtins.include)
|
||||
|
||||
(include "scope")
|
||||
(include "branch")
|
||||
(include "lambda")
|
||||
|
||||
(def exec builtins.exec)
|
||||
(def trace builtins.trace)
|
||||
(def typeof builtins.typeof)
|
||||
|
||||
(fn identity [x] x)
|
||||
|
||||
(include "types")
|
||||
(include "assert")
|
||||
(include "ast")
|
||||
(include "cmp")
|
||||
(include "error")
|
||||
(include "ffi")
|
||||
(include "loop")
|
||||
(include "math")
|
||||
(include "test")
|
||||
|
||||
(test.space "core" (include "tests/main"))
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue