Skip to content

Commit 3e85407

Browse files
committed
Try update Aya and see if it's updated
1 parent e8f1832 commit 3e85407

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

aya/literate.aya.md

+16
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,22 @@ example def infixl [+] (a n : Nat) : Nat elim a
3535
def foo =>
3636
```
3737

38+
```aya
39+
prim I
40+
prim coe (r s : I) (A : I → Type) : A r → A s
41+
prim Path
42+
variable A B : Type
43+
def infix = (a b : A) ⇒ Path (\i ⇒ A) a b
44+
open inductive Bool | true | false
45+
def not Bool : Bool
46+
| true ⇒ false
47+
| false ⇒ true
48+
49+
def id (x : Bool) ⇒ x
50+
51+
def Goal ⇒ id = (fn x ⇒ not (not x))
52+
```
53+
3854
## Math formulas
3955

4056
$$

0 commit comments

Comments
 (0)