ligo/src/test/contracts/boolean_operators.mligo

8 lines
254 B
Plaintext
Raw Normal View History

2019-10-23 18:29:49 -07:00
// Test CameLIGO boolean operators
2020-03-02 18:01:56 +01:00
let or_true (b : bool) : bool = b || true
let or_false (b : bool) : bool = b || false
let and_true (b : bool) : bool = b && true
2020-02-27 17:51:29 +01:00
let and_false (b : bool) : bool = b && false
2020-03-02 18:01:56 +01:00
let not_bool (b : bool) : bool = not b