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-02 23:43:01 +03:00
Code
Issues
Projects
Releases
Wiki
Activity
e2f2d0a2f4
juvix
/
tests
/
negative
/
LetMissingClause.juvix
8 lines
100 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Typecheck let expressions (#1712)
2023-01-17 11:41:07 +03:00
module LetMissingClause;
Fix Makefile target bugs for formatting and type Checking Juvix files (#2057) This PR resolves a few bugs in the Makefile targets for formatting and type checking Juvix files, which were preventing the capture of type checking errors for our examples and bad formatting for all the Juvix files in the repository. With this PR, our code should now be clean, and we can expect every file to be properly formatted and type checked. Changes made: - [x] Updated `make format-juvix-files` - [x] Updated `make check-format-juvix-files` - [x] Formatted all Juvix files - [x] Comment a fragment in `examples/milestone/Bank/Bank.juvix` In the future, we will drastically simplify the Makefile once we improve the `format` and the `type check` command for example posted here: - #2066 - #2087 Related: - #2063 - #2040 (due to some typechecking errors we're not capturing before) - #2105 - https://github.com/anoma/juvix/issues/2059
2023-05-19 18:33:56 +03:00
id : {A : Type} → A → A;
id {A} :=
let
id' : A → A;
in id';
Reference in New Issue
Copy Permalink