x := "Juliette" ; Afficherligne("Bonjour "+x+ ".") ; Afficherligne("1 et 1 = "+1+1) ; // premier + entre chaîne et nombre donc concaténation, idem pour le suivant Afficher("1 et 1 = "+(1+1)) ; // 1+1 = 2 dans la parenthèse puis concaténation