Until Idris2 starts supporting the 'syntax' keyword, here's a poor-man's equational reasoning
data Step : a -> b -> TypeSlightly 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 zCalc : (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 zUse a judgemental equality but is not trivial to the reader.