Created
July 26, 2012 08:43
-
-
Save mxswd/3181033 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
| import Data.Yaml | |
| import qualified Data.Map as M | |
| main = do | |
| Just f <- decodeFile "programs.yml" | |
| let Just x = M.lookup "SENG" f | |
| case x of | |
| Nothing -> fail "InvalidFile" | |
| Just a -> putStrLn a |
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
| --- | |
| SENG: | |
| - COMP9001 | |
| - COMP8001 | |
| - SENG1031 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment