1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-14 17:32:00 +03:00
juvix/tests/positive/Inductive.juvix

7 lines
57 B
Plaintext
Raw Normal View History

2022-02-18 15:01:42 +03:00
module Inductive;
inductive T {
t : T;
};
2022-04-04 18:44:08 +03:00
end ;