Advertisement
tinyevil

Untitled

Mar 7th, 2018
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. def make_false_list (n:nat) : ListOfSize n
  2. case n of
  3. 0 -> empty
  4. S m -> cons m false (make_false_list m)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement