Merge pull request #3903 from glecetre/patch-1

[f#/fr] Add missing translation
This commit is contained in:
Max Schumacher 2020-07-08 10:03:11 +02:00 committed by GitHub
commit dc0d862ba9
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