summaryrefslogtreecommitdiffstats
path: root/src/journal/17-list.rst
diff options
context:
space:
mode:
Diffstat (limited to 'src/journal/17-list.rst')
-rw-r--r--src/journal/17-list.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/journal/17-list.rst b/src/journal/17-list.rst
new file mode 100644
index 0000000..1f4cbe4
--- /dev/null
+++ b/src/journal/17-list.rst
@@ -0,0 +1,10 @@
+.. frontmatter
+ title: List
+ date: 2015-17-24
+ author: Johannes Löthberg
+ author_link: /~kyrias/about.html
+
+.. code:: haskell
+
+ data List a = Cons a (List a)
+ | Nil