1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-12 14:28:08 +03:00
juvix/tests/Geb/positive/Core/test004.jvc

7 lines
197 B
Plaintext
Raw Normal View History

-- definitions
def not : Bool -> Bool := \(x : Bool) if x then false else true;
def and : Bool -> Bool -> Bool := \(x : Bool) \(y : Bool) if x then y else false;
and (not false) (not (not true))