From d3e5063e5fbbe064c2aaf85ba6787f33d3dc1d52 Mon Sep 17 00:00:00 2001
From: Jlh18 Skipped step
-- To find out why we put `s b` on the left you can try
- ```agda
- flipIso : Bool ≅ Bool
- flipIso = iso Flip Flip s r where
+ - To find out why we put `s b` on the left you can try
+ ```agda
+ flipIso : Bool ≅ Bool
+ flipIso = iso Flip Flip s r where
- s : section Flip Flip
- s = {!!}
+ s : section Flip Flip
+ s = {!!}
- r : retract Flip Flip
- r = {!!}
- ```
-- Check the goal of the hole `s = {!!}` and try using `C-c C-r`.
- It should give you `λ x → {!!}`.
- This says it's asking for some new proof for each `x : Bool`.
- If you check the goal you can find out what proof it wants
- and that `x : Bool`.
-- To do a proof for each `x : Bool`, we can also just stick
- `x` before the `=` and do away with the `λ`.
+ r : retract Flip Flip
+ r = {!!}
+ ```
+ - Check the goal of the hole `s = {!!}` and try using `C-c C-r`.
+ It should give you `λ x → {!!}`.
+ This says it's asking for some new proof for each `x : Bool`.
+ If you check the goal you can find out what proof it wants
+ and that `x : Bool`.
+ - To do a proof for each `x : Bool`, we can also just stick
+ `x` before the `=` and do away with the `λ`.