Last active
January 23, 2018 15:35
-
-
Save VitorLuizC/2d4e35034a45ba42593469c40a4fadb4 to your computer and use it in GitHub Desktop.
Haskell - Tudo que aprendi lendo o código dos outros e pesquisando depois.
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
| module User ( | |
| User | |
| ) where | |
| data User = User { | |
| name :: String, | |
| id :: String | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment