1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-14 17:32:00 +03:00
juvix/tests/positive/MiniC/MultiModules/Bool.mjuvix
janmasrovira bd4ea3e54b
Support multiple modules in compilation (#100)
* translate MiniJuvix import statements to MicroJuvix include statements
2022-05-13 11:44:06 +02:00

10 lines
72 B
Plaintext

module Bool;
inductive Bool {
true : Bool;
false : Bool;
};
end;