ligo/src/test/contracts/expected/boolean_operators.ligo.expected

10 lines
279 B
Plaintext
Raw Normal View History

2020-06-08 15:00:44 +02:00
function or_true (const b : bool) : bool is b or true
function or_false (const b : bool) : bool is b or false
function and_true (const b : bool) : bool is b and true
function and_false (const b : bool) : bool is b and false
function not_bool (const b : bool) : bool is not b