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

10 lines
279 B
Plaintext
Raw Normal View History

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