ligo/src/test/contracts/boolean_operators.ligo
2020-02-27 19:09:14 +01:00

6 lines
280 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