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

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.