This website requires JavaScript.
Explore
Help
Sign In
anoma
/
juvix
Watch
1
Star
1
Fork
0
You've already forked juvix
mirror of
https://github.com/anoma/juvix.git
synced
2024-12-15 01:52:11 +03:00
Code
Issues
Projects
Releases
Wiki
Activity
6908ca9440
juvix
/
tests
/
positive
/
BuiltinsMultiImport
/
Nat.juvix
9 lines
79 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Perform ScopedToAbstract exactly once for each module (#223) This commit introduces a cache of Abstract.TopModule that is queried for each ImportStatement. Before this change, `registerBuiltin` could be called multiple times for a module, if it was imported multiple times.
2022-07-01 17:59:52 +03:00
module Nat;
Rename builtin natural to nat and boolean to bool (#1588)
2022-10-14 19:42:03 +03:00
builtin nat
Change syntax for ind. data types and forbid the empty data type (#1684) Closes #1644 #1635
2023-01-03 15:49:04 +03:00
type Nat :=
zero : Nat
| suc : Nat → Nat;
Perform ScopedToAbstract exactly once for each module (#223) This commit introduces a cache of Abstract.TopModule that is queried for each ImportStatement. Before this change, `registerBuiltin` could be called multiple times for a module, if it was imported multiple times.
2022-07-01 17:59:52 +03:00
end;
Reference in New Issue
Copy Permalink