10 lines
203 B
Text
10 lines
203 B
Text
open tactic
|
|
|
|
example : sizeof [tt, tt] < sizeof [tt, ff, tt] :=
|
|
dec_trivial
|
|
|
|
example : sizeof [tt, tt] = sizeof [ff, ff] :=
|
|
dec_trivial
|
|
|
|
example : sizeof (3:nat) < sizeof ([3] : list nat) :=
|
|
dec_trivial
|