Update docs/writing-fusing-functions.md

This commit is contained in:
Nicolas Abril 2024-05-20 09:51:15 +02:00 committed by GitHub
parent 276dcc6280
commit be390b1240
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,7 +17,7 @@ main = (if true 42 37)
// so (true 42 37) will do the same thing.
```
This is how a `Not` function that acts on this encoding can be defined.
This is how a `Not` function that acts on this encoding can be defined:
```rs
not = λboolean (boolean false true)
main = (not true) // Outputs λtλf f.