Created
June 19, 2014 12:14
-
-
Save lmarburger/1f52c4d4afaf62a73128 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module lec1 | |
total | |
ltake : Nat -> List a -> List a | |
ltake Z _ = [] | |
ltake _ [] = [] | |
ltake (S k) (x :: xs) = x :: (ltake k xs) | |
-- > ltake 1 [] | |
-- (input):0:0:Incomplete term ltake (fromInteger 1) [] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment