Reword code types

这个提交包含在:
Julian Ospald 2015-04-16 20:10:56 +02:00
父节点 8f9343cb36
当前提交 42fed3b696
找不到此签名对应的密钥
GPG 密钥 ID: 220CD1C5BDEED020
共有 1 个文件被更改,包括 3 次插入3 次删除

查看文件

@ -692,10 +692,10 @@ For haskell IDEs, see \url{https://wiki.haskell.org/IDEs}
Does this compile? If not, fix it. Is this a total function?
\setHaskellCodeStyle
\begin{lstlisting}
data FakeInt = MkDouble Double
| MkInt Int
data IntOrDouble = MkDouble Double
| MkInt Int
f :: Int -> FakeInt
f :: Int -> IntOrDouble
f 0 = 0.5
\end{lstlisting}
\end{frame}