Created
January 2, 2015 02:59
-
-
Save ota42y/1cd050ce87c6406c8536 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
type Name = String | |
colorName :: NamedColor -> Name | |
colorName c = case c of | |
Red -> "赤" | |
Green -> "緑" | |
Blue -> "青" | |
main = | |
print 1 | |
-- parse error on input ‘::’ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment