minor change to Naturals

This commit is contained in:
wadler 2018-03-01 20:27:15 +01:00
parent e34252934f
commit 6e6531e7ae

View file

@ -24,16 +24,8 @@ Everyone is familiar with the natural numbers:
...
and so on. We write `` for the *type* of natural numbers, and say that
`0`, `1`, `2`, `3`, and so on are *values* of type ``. In Agda,
we indicate this by writing
0 :
1 :
2 :
3 :
...
and so on.
`0`, `1`, `2`, `3`, and so on are *values* of type ``, indicated by
writing `0 : `, `1 : `, `2 : `, `3 : `, and so on.
The set of natural numbers is infinite, yet we can write down
its definition in just a few lines. Here is the definition