ligo/test/contracts/boolean_operators.ligo
2019-09-09 11:47:42 +02:00

12 lines
315 B
Plaintext

function or_true (const b : bool) : bool is
begin skip end with b or True
function or_false (const b : bool) : bool is
begin skip end with b or False
function and_true (const b : bool) : bool is
begin skip end with b and True
function and_false (const b : bool) : bool is
begin skip end with b and False