// Ces programmes sont sous licence CeCILL-B V1. int a; void f(int x) { println(2 * x); a = 2 * x; } void main() { int n; a = 3; n = 4; f(a + n); }