From b0c2e8ce9ed83776331c63d38785577187f4385c Mon Sep 17 00:00:00 2001 From: Julian Ospald Date: Wed, 15 Apr 2015 17:46:54 +0200 Subject: [PATCH] Add a pause --- VL1.tex | 1 + 1 file changed, 1 insertion(+) diff --git a/VL1.tex b/VL1.tex index 60afc22..68bc24c 100644 --- a/VL1.tex +++ b/VL1.tex @@ -401,6 +401,7 @@ listLen :: [Integer] -> Integer listLen [] = 0 listLen (x:xs) = 1 + listLen xs \end{lstlisting} +\pause We can also nest pattern matching: \begin{lstlisting} sumEveryTwo :: [Integer] -> [Integer]