-
Typechecking
```juvix
module papp;
import Stdlib.Prelude open;
f (x y : Nat) : Nat := x + y;
g : Nat -> Nat := f@?{y := 1};
```
gives the error
```
/Users/heliax/Documents/progs/juvix/p…
-
I get the error:
```
Suspicious state from syntax checker juvix: Flycheck checker juvix returned 1, but its output contained no errors: Invalid option `--only-errors'
Usage: juvix ((-v|--version)…
-
-
Geb is designed internally for its recursive types to be (co)limits of (compositional) powers of polynomial functors, and it should expose an interface to clients to allow objects to be specified as `…
-
NB the traversal needs to be applicative not just pure
-
Typechecking
```
module termRec;
import Stdlib.Prelude open;
type MyList A :=
| myNil
| myCons@{
elem : A;
next : MyList A;
};
go {A B} (f : A -> B) : MyList A -> M…
-
Users can write tests for their Juvix packages using (for example) [juvix-test](https://github.com/anoma/juvix-test).
A script is required to run the test using `juvix eval` or `juvix compile` foll…
-
1. Clone `git clone https://github.com/anoma/anoma-app-patterns.git` and `git checkout ebfa643`
2. Try to run `juvix eval Token/Tests/AnomaTest.juvix`, which should hang for a long time to finally r…
-
At RWC I was chatting with [Wei Dai](https://twitter.com/_weidai), who mentioned (I think? I talked to a lot of people) that Anoma (was it?) are working on a specification called Vampir (? I'm bad at …
str4d updated
2 years ago
-
I think that it might be more intuitive to have the `--non-interactive` behaviour as the default and instead have an `--interactive flag`.