Files
blog/content/posts/2013-08-03-useful-haskell-learnings.md
T
2023-02-25 17:25:14 +01:00

394 B

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

Most useful.