2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00

Funktionsapplikation

This commit is contained in:
Martin Thoma 2014-03-25 19:48:20 +01:00
parent 564dbc9790
commit bb674b307b
7 changed files with 44 additions and 1 deletions

View file

@ -0,0 +1,2 @@
data Tree a = Empty | Node a (Tree a) (Tree a)
deriving (Show)