ligo/src/test/contracts/boolean_operators.mligo
2020-03-02 18:01:56 +01:00

8 lines
254 B
Plaintext

// Test CameLIGO boolean operators
let or_true (b : bool) : bool = b || true
let or_false (b : bool) : bool = b || false
let and_true (b : bool) : bool = b && true
let and_false (b : bool) : bool = b && false
let not_bool (b : bool) : bool = not b