I installed Agda and started playing around. I tried to define an equality type and came up with the following solution:
data _≡_ {A : Set} : A -> A -> Set where
refl : {x : A} -> x ≡ x
However, in Ulf Norell's and James Chapman's tutorial, they define it like this:
data _==_ {A : Set}(x : A) : A -> Set where
refl : x == x
What's the difference (apart from the choice of a different character) to my version? Which one is recommended?