Created
July 16, 2009 17:52
-
-
Save cmoore/148557 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
key_from_row :: String -> [(String,String)] -> String | |
key_from_row key (row:x) = do | |
let (k,v) = row | |
if k == key then v else key_from_row key x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment