Quellcode durchsuchen

Add negative example

stripped-german
Julian Ospald vor 9 Jahren
Ursprung
Commit
717c1b370f
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden GPG-Schlüssel-ID: 220CD1C5BDEED020
1 geänderte Dateien mit 3 neuen und 0 gelöschten Zeilen
  1. +3
    -0
      VL2/content/VL2_currying5.tex

+ 3
- 0
VL2/content/VL2_currying5.tex Datei anzeigen

@@ -12,5 +12,8 @@ Did you just notice the braces? They are \textbf{very} important! So, currying i
\begin{haskellcode}
f :: Int -> Int -> Int
f :: Int -> (Int -> Int)

-- but this is NOT the same
f :: (Int -> Int) -> Int
\end{haskellcode}
On the other hand function application is \emph{left}-associative, so \hinline{f 3 2} is just a shorthand of \hinline{(f 3) 2}. Makes sense?

Laden…
Abbrechen
Speichern