summaryrefslogtreecommitdiffstats
path: root/src/journal/17-list.rst
blob: 1f4cbe4ea324ca04e7dc26936e7d7ab28fe68e5d (plain)
1
2
3
4
5
6
7
8
9
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