Skip to content

Instantly share code, notes, and snippets.

@moznion
Created July 29, 2012 12:47
Show Gist options
  • Save moznion/3198497 to your computer and use it in GitHub Desktop.
Save moznion/3198497 to your computer and use it in GitHub Desktop.
スタートHaskell 2 第2回目演習 パターンマッチの網羅
charName :: Char -> String
charName 'a' = "Albert"
charName 'b' = "Broseph"
charName 'c' = "Cecil"
charName _ = "Special Others"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment