18 lines
394 B
Markdown
18 lines
394 B
Markdown
---
|
|
title: Useful Haskell Learnings
|
|
author: James McDonald
|
|
type: post
|
|
date: 2013-08-03T07:59:36+00:00
|
|
url: /2013/08/useful-haskell-learnings/
|
|
dsq_thread_id:
|
|
- 3784870289
|
|
categories:
|
|
- Hacks
|
|
- Uncategorized
|
|
|
|
---
|
|
<pre class="lang:haskell decode:true " >isSexyPerson x = if x == "Oda"
|
|
then x ++ " is indeed sexy!"
|
|
else "The sexiness of " ++ x ++ " is unknown."</pre>
|
|
|
|
Most useful. |