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 04:43:18 +03:00
Code
Issues
Projects
Releases
Wiki
Activity
c74a6757c5
juvix
/
tests
/
positive
/
BuiltinsMultiOpenImport
/
Nat.juvix
7 lines
75 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 :=
Fix: format juvix files in test/positive (#1978) This PR fixes a formatting issue that drops blank lines between axiom declarations. It goes after: - #1980 - Closes https://github.com/anoma/juvix/issues/1986
2023-04-12 11:07:01 +03:00
| zero : 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
| suc : Nat → Nat;
Reference in New Issue
Copy Permalink