1
1
mirror of https://github.com/anoma/juvix.git synced 2025-01-07 16:22:14 +03:00
juvix/tests/Internal/positive/BuiltinInductive.juvix
Paul Cadman b541972d03
Add types to Core functions and constructors when translating from Internal (#1617)
* Support inductive type and universe expressions

* Support function type expressions

* Add type information to Core function and constructor nodes

* Remove unused do
2022-11-11 12:38:48 +00:00

10 lines
102 B
Plaintext

module BuiltinInductive;
builtin string
axiom MyString : Type;
main : Type;
main := MyString;
end;