Skip to content

Instantly share code, notes, and snippets.

@moznion
Created July 29, 2012 12:48
Show Gist options
  • Save moznion/3198513 to your computer and use it in GitHub Desktop.
Save moznion/3198513 to your computer and use it in GitHub Desktop.
スタートHaskell 2 第2回目演習 総和と総積
mySum :: [Int] -> Int
mySum [] = 0
mySum (x:xs) = x + mySum xs
myProduct :: [Int] -> Int
myProduct [] = 1
myProduct (x:xs) = x * myProduct xs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment