mirror of
https://github.com/anoma/juvix.git
synced 2025-01-07 16:22:14 +03:00
9 lines
92 B
Plaintext
9 lines
92 B
Plaintext
module BuiltinBool;
|
|
|
|
open import Stdlib.Prelude;
|
|
|
|
main : Bool;
|
|
main := true || false;
|
|
|
|
end;
|