Skip to content

Instantly share code, notes, and snippets.

@dvbeato
Created February 12, 2015 20:02
Show Gist options
  • Select an option

  • Save dvbeato/5e773944c3461ee8730f to your computer and use it in GitHub Desktop.

Select an option

Save dvbeato/5e773944c3461ee8730f to your computer and use it in GitHub Desktop.
guess :: Int -> [Char]
guess 7 = "Acertou"
guess x = "Ooops, tente outra vez."
plus1 :: [Int] -> [Int]
plus1 [] = []
plus1 (x:xs) = x + 1 : plus1 xs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment