haskell-lectures/VL2/content/VL2_let.tex

6 rader
198 B
TeX

\ifger{Ein ähnlicher Weg wäre über}{Another way which is very similar would be using} \hinline{let}:
\begin{haskellcode}
f :: Int -> Int
f x = let y p = x + p
in x + (y 2)
\end{haskellcode}