| select | Def l[i] == hd(nth_tl(i;l)) 
 Thm*  | 
| nth_tl | Def nth_tl(n;as) == if n   0  as else nth_tl(n-1;tl(as)) fi  (recursive) 
 Thm*  | 
| hd | Def hd(l) == Case of l; nil  "?" ; h.t  h 
 Thm*  | 
| tl | Def tl(l) == Case of l; nil  nil ; h.t  t 
 Thm*  | 
| le_int | Def i   j ==   j <  i Thm*  | 
| lt_int | Def i <  j == if i < j  true  ; false  fi Thm*  | 
| bnot | Def   b == if b  false  else true  fi Thm*  | 
About:
|  |  |  |  |  |  |  | 
|  |  |  |  |  |  |  | 
|  |  |  |  |  |