Created
July 29, 2012 12:50
-
-
Save moznion/3198519 to your computer and use it in GitHub Desktop.
スタートHaskell 2 第2回目演習 等比数列
This file contains hidden or 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
gp :: Num a => a -> a -> [a] | |
gp first ratio = [first] ++ gp (first * ratio) ratio |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment