--- title: Useful Haskell Learnings author: james type: post date: 2013-08-03T07:59:36+00:00 url: /2013/08/useful-haskell-learnings/ dsq_thread_id: - 3784870289 categories: - Hacks - Uncategorized ---
isSexyPerson x = if x == "Oda"
    then x ++ " is indeed sexy!"
    else "The sexiness of " ++ x ++ " is unknown."
Most useful.