klyn.Int.operator/
method
public native static operator/( readonly a as Int, readonly b as Int ) as Double
Description

Divides one Int value by another.

Parameters
ParameterDescription
aDividend.
bDivisor.
Returns

The real quotient as a Double.

Throws
  • ZeroDivisionError if the divisor equals 0 at runtime.
Example
assert 9 / 2 == 4.5