Skip to content

Commit

Permalink
Add imports for *-mono-<= exercise
Browse files Browse the repository at this point in the history
  • Loading branch information
Jefferson Carpenter committed Jan 8, 2025
1 parent 6df65f9 commit d968db5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plfa/part1/Relations.lagda.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ the next step is to define relations, such as _less than or equal_.
```agda
import Relation.Binary.PropositionalEquality as Eq
open Eq using (_≡_; refl; cong)
open import Data.Nat using (ℕ; zero; suc; _+_)
open import Data.Nat.Properties using (+-comm; +-identityʳ)
open import Data.Nat using (ℕ; zero; suc; _+_; _*_)
open import Data.Nat.Properties using (+-comm; +-identityʳ; *-comm)
```


Expand Down

0 comments on commit d968db5

Please sign in to comment.