Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- let rec wstaw(lista, element, pozycja)=
- match lista with
- | el::lista -> if pozycja = 0 then element::el::wstaw(lista, element, pozycja-1) else el::wstaw(lista, element, pozycja-1)
- | lista -> []
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement