Glossaire du langage algorithmique et traductions
Profil de fonction

Syntaxealg : Profil de fonction

Fonction nomFcn( param1 : T1 ;...; paramN : Tn ) : TypeRes

SyntaxeC/C++ : Profil de fonction

TypeRes nomFcn (T1,..., Tn) // pour le compilateur

TypeRes nomFcn(T1 param1, ..., Tn paramN) // pour l'humain

SyntaxeJava : Profil de fonction

static TypeRes nomFcn(T1 param1, ..., Tn paramN)

SyntaxePython : Profil de fonction

def nomFcn(param1, ..., paramN):