mirror of
https://github.com/fluencelabs/aqua-lib
synced 2024-12-04 15:20:23 +00:00
fix(binary)!: Remove binary.aqua (#75)
This commit is contained in:
parent
09c2cd9c07
commit
f89ecfbe79
25
binary.aqua
25
binary.aqua
@ -1,25 +0,0 @@
|
|||||||
-- TODO: add aqua tests
|
|
||||||
|
|
||||||
func and(l: bool, r: bool) -> bool:
|
|
||||||
res: ?bool
|
|
||||||
if l:
|
|
||||||
res <<- r
|
|
||||||
else:
|
|
||||||
res <<- false
|
|
||||||
<- res!
|
|
||||||
|
|
||||||
func or(l: bool, r: bool) -> bool:
|
|
||||||
res: ?bool
|
|
||||||
if l:
|
|
||||||
res <<- true
|
|
||||||
else:
|
|
||||||
res <<- r
|
|
||||||
<- res!
|
|
||||||
|
|
||||||
func not(u: bool) -> bool:
|
|
||||||
res: ?bool
|
|
||||||
if u:
|
|
||||||
res <<- false
|
|
||||||
else:
|
|
||||||
res <<- true
|
|
||||||
<- res!
|
|
Loading…
Reference in New Issue
Block a user