Update fsharp-fr.html.markdown

Translate untranslated comment and explicitly cite currying
This commit is contained in:
Guillaume Lecêtre 2020-04-12 15:49:21 +02:00 committed by GitHub
parent 2f81283970
commit d5dab5759d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -140,7 +140,8 @@ module FunctionExamples =
let a = add 1 2
printfn "1+2 = %i" a
// partial application to "bake in" parameters (?)
// application partielle des paramètres (curryfication ou "currying" en anglais)
// add42 est une nouvelle fonction qui ne prend plus qu'un paramètre
let add42 = add 42
let b = add42 1
printfn "42+1 = %i" b