This commit is contained in:
James McDonald
2018-01-09 20:39:32 +01:00
parent d86f2129f0
commit 96eedb5095
64 changed files with 682 additions and 0 deletions
@@ -0,0 +1,18 @@
---
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
---
<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.