data David = Projects | Talks | Conferences | Teaching | Notes
Projects
GHCi, version 11.11.24: https://www.haskell.org   :? for help
*David> print research >> mapM_ print (filter ((==) "research" . fst) projects) *David> print math >> mapM_ print (filter ((==) "math" . fst) projects) *David> print comp >> mapM_ print (filter ((==) "comp" . fst) projects)