Add a pause

This commit is contained in:
Julian Ospald
2015-04-15 17:46:54 +02:00
parent 22aae2a262
commit b0c2e8ce9e

View File

@@ -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]