mirror of
https://github.com/anoma/juvix.git
synced 2025-01-07 16:22:14 +03:00
b541972d03
* Support inductive type and universe expressions * Support function type expressions * Add type information to Core function and constructor nodes * Remove unused do
10 lines
102 B
Plaintext
10 lines
102 B
Plaintext
module BuiltinInductive;
|
|
|
|
builtin string
|
|
axiom MyString : Type;
|
|
|
|
main : Type;
|
|
main := MyString;
|
|
|
|
end;
|