Add a pause

This commit is contained in:
Julian Ospald 2015-04-15 17:46:54 +02:00
부모 22aae2a262
커밋 b0c2e8ce9e
No known key found for this signature in database
GPG 키 ID: 220CD1C5BDEED020
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

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