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-12 14:28:08 +03:00
Code
Issues
Projects
Releases
Wiki
Activity
8f6eb3ebc7
juvix
/
tests
/
positive
/
BuiltinsMultiOpenImport
/
Nat.juvix
10 lines
85 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
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
inductive Nat {
zero : Nat;
suc : Nat → Nat;
};
end;
Reference in New Issue
Copy Permalink