I was going through software foundations and got the example:
repeat (try (left; reflexivity); right).
and was confused what this meant. For example do we get:
try [ (left; reflexivity); right ]
or
[try (left; reflexivity);] right
second or first?
in particular I was trying to understand:
Theorem In10 : In 10 [1;2;3;4;5;6;7;8;9;10].
Proof.
repeat (try (left; reflexivity); right).
Qed.