Until Idris2 starts supporting the 'syntax' keyword, here's a poor-man's equational reasoning
data Step : a -> b -> Type
Slightly nicer syntax for justifying equations:
```
|~ a
~~ b ...( justification )
```
and we can think of the `...( justification )` as ASCII art for a thought bubble.
data FastDerivation : a -> b -> Type
(|~) : (0 x : a) -> FastDerivation x x
(~~) : FastDerivation x y -> Step y z -> FastDerivation x z
Calc : (0 _ : FastDerivation x y) -> x = y
(..<) : (0 y : a) -> (0 _ : y = x) -> Step x y
(..>) : (0 y : a) -> (0 _ : x = y) -> Step x y
(~=) : FastDerivation x y -> (0 z : dom) -> {auto 0 _ : y = z} -> FastDerivation x z
Use a judgemental equality but is not trivial to the reader.