ligo/src/test/contracts/boolean_operators.ligo

6 lines
280 B
Plaintext
Raw Normal View History

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