Last active
December 21, 2019 00:07
-
-
Save 3v0k4/d951b7564d161caa64690173dd814af9 to your computer and use it in GitHub Desktop.
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
| // upper :: String -> String | |
| const upper = s => s.toUpperCase() | |
| // shout :: String -> String | |
| const shout = s => s.concat('!') | |
| // format :: String => Either(String) | |
| const format = s => | |
| Right(s) | |
| .map(upper) | |
| .map(exclame) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment