Reword code types

This commit is contained in:
Julian Ospald 2015-04-16 20:10:56 +02:00
부모 8f9343cb36
커밋 42fed3b696
No known key found for this signature in database
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}