Add a pause

This commit is contained in:
Julian Ospald 2015-04-15 17:46:54 +02:00
父節點 22aae2a262
當前提交 b0c2e8ce9e
沒有發現已知的金鑰在資料庫的簽署中
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]