mirror of
https://github.com/anoma/juvix.git
synced 2025-01-05 22:46:08 +03:00
acea6615a4
Closes #1701
9 lines
113 B
Plaintext
9 lines
113 B
Plaintext
module BuiltinIf;
|
|
|
|
open import Stdlib.Prelude;
|
|
|
|
main : Bool;
|
|
main := if false (and false) (and true) true;
|
|
|
|
end;
|