1
1
mirror of https://github.com/anoma/juvix.git synced 2025-01-05 22:46:08 +03:00
juvix/tests/Internal/positive/BuiltinIf.juvix
2023-01-25 18:57:47 +01:00

9 lines
113 B
Plaintext

module BuiltinIf;
open import Stdlib.Prelude;
main : Bool;
main := if false (and false) (and true) true;
end;