release 0.1.0
This commit is contained in:
commit
30d94536a9
90 changed files with 7722 additions and 0 deletions
14
modules/core/math.owa
Normal file
14
modules/core/math.owa
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
(seq
|
||||
(def + builtins.math.add)
|
||||
(def - builtins.math.sub)
|
||||
(def * builtins.math.mul)
|
||||
(def / builtins.math.div)
|
||||
(def % builtins.math.mod)
|
||||
(def ** builtins.math.pow)
|
||||
|
||||
(fn ++ <Number>[<Number>x]
|
||||
(+ x 1))
|
||||
|
||||
(fn -- <Number>[<Number>x]
|
||||
(- x 1))
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue