Results will be displayed here

Score: 0 / 11

Opérateur sous forme préfixéeExpression fonctionnelleFonction à un argumentDéfinition locale de valeur(s) primitive(s)Définition locale simultanéeFonction appliquée à un argumentDéfinition globale de fonction(s)Expression primitiveFonction appliquée à plusieurs argumentsDéclarationFonction à plusieurs argumentsDéfinition globale de valeur(s) primitive(s)
let add x y = x + y
let x = 2 in x + 3
let x = 2
let x = 2 and y = 3 in x + y
let succ x = x + 1
function x -> x + 3
(fun x y -> x + y) 2 3
fun x y -> x + y
x + 3
( + )
(function x -> x + 3) 2)