Guest User

Untitled

a guest
Oct 20th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. generator
  2. empty:->list
  3. append: list, natural ->list
  4. Operations
  5. size: list->natural
  6. nth: list, natural ->list
  7. Axioms
  8. size(empty) = 0
  9. size(append(l,n)) = size(l)+1
  10. nth(append(l,n),0) = 0
Add Comment
Please, Sign In to add comment