diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-07-24 23:29:21 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-07-24 23:29:21 +0200 |
commit | 98482a68a501529780430a6cc9bf23edece4375f (patch) | |
tree | 1e91ec026f08a1bcae3dde7f1936647100d1c32a /src/journal | |
parent | 270c5514bb0edd8b0c8faec1d4171dca47ff9c5f (diff) | |
download | website-98482a68a501529780430a6cc9bf23edece4375f.tar.xz |
journal: Add #17: List
Diffstat (limited to 'src/journal')
-rw-r--r-- | src/journal/17-list.rst | 10 |
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 |