aboutsummaryrefslogtreecommitdiff
path: root/hott/List_HoTT.thy
blob: a48d2ab39b830dd09c8434ddb90f20b61f3f4b8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
theory List_HoTT
imports
  MLTT.List
  Nat

begin

section \<open>Length\<close>

definition [implicit]: "len \<equiv> ListRec {} Nat 0 (fn _ _ rec. suc rec)"

experiment begin
  Lemma "len [] \<equiv> ?n" by compute
  Lemma "len [0, suc 0, suc (suc 0)] \<equiv> ?n" by compute
end


end