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