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-01 08:42:31 +03:00
Code
Issues
Projects
Releases
Wiki
Activity
5cea26ac7f
juvix
/
tests
/
negative
/
Internal
/
LhsTooManyPatterns.juvix
9 lines
94 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Support implicit arguments (#144) * work in progress towards implicit arguments * Wip towards implicit types * improve arity checker * Add version of SimpleFungibleToken with implicit arguments * guess arity of body before checking the lhs of a clause * add ArityUnknown and fix some tests * wip: proper errors in arity checker * fix bugs, improve errors and add tests * format * set hlint version to 3.4 in the ci * update pre-commit version to 3.0.0 * minor changes * added more revisions * minor Co-authored-by: Jonathan Cubides <jonathan.cubides@uib.no>
2022-06-13 15:25:22 +03:00
module LhsTooManyPatterns;
inductive T {
A : T;
};
f : T → T;
remove ≔ from the language and replace it by := (#1563) * remove ≔ from the language and replace it by := * revert accidental changes in juvix input mode * update stdlib submodule * rename ℕ by Nat in the tests and examples * fix shell tests
2022-09-30 03:55:32 +03:00
f A x := A;
Support implicit arguments (#144) * work in progress towards implicit arguments * Wip towards implicit types * improve arity checker * Add version of SimpleFungibleToken with implicit arguments * guess arity of body before checking the lhs of a clause * add ArityUnknown and fix some tests * wip: proper errors in arity checker * fix bugs, improve errors and add tests * format * set hlint version to 3.4 in the ci * update pre-commit version to 3.0.0 * minor changes * added more revisions * minor Co-authored-by: Jonathan Cubides <jonathan.cubides@uib.no>
2022-06-13 15:25:22 +03:00
end;
Reference in New Issue
Copy Permalink