extern printd(x);
global x, y = 4, z = 2;
def kvadrat(x) x * x;
printd(kvadrat(y) + x - z);
x = y * y;
y = y - z;
printd(x);
printd(y);