79786171

Date: 2025-10-09 08:20:10
Score: 1.5
Natty:
Report link

Try:

```agda
f : {ℕ} → ℕ
f {n} = n
```

In general, writing lambdas directly can be brittle, because Agda can be (over-)eager to introduce implicits, so this is one to watch out for. Writing definitions in 'pattern-matching' style offers slightly more fine-grained control.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: James McKinna