public static abs(value as Complex<Double>) as Double:
Returns the magnitude of a complex number.
import klyn.math z = Complex(3.0, 4.0) print(Math.abs(z)) # 5.0