packages feed

haskell-src-exts-1.15.0.1: tests/examples/IndentedWhereBlock.hs

module Graph where

 countryLookUp :: String -> Graph -> Maybe Int
 countryLookUp country graph = indexOf country graph where

 indexOf :: String -> Graph -> Maybe Int	
 indexOf _ Empty = Nothing