real puissance(real x, int y)
  real z = x
  while y > 0
    z * x
  let y - 1
  print z
return z

puissance(2.0, 3)