ligo/src/test/contracts/expected/boolean_operators.ligo.expected
2020-06-08 15:07:20 +02:00

10 lines
279 B
Plaintext

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