Created
August 7, 2011 22:33
-
-
Save michaelschade/1130878 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
import Control.Monad ( liftM ) | |
import Web.JonathansCard ( latest ) | |
main :: IO () | |
main = putStrLn . show =<< latest | |
{- Outputs: | |
Right (Balance {balAmount = 28.08, balBalanceId = 25573, balCreated = Just | |
2011-08-08 00:56:03 UTC, balMessage = "My balance is $28.08 as of Aug 7th at | |
8:56pm EDT (America/New_York)"}) | |
-} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment