function divide(a, b)
  _Print_Console("Dividing ", a, " by ", b)
  result = a / b
  _Print_Console("Result: ", result)
  return result
end