klyn.math.Complex.toString
method
public readonly toString() as String:
Description

Returns a string representation of the complex number.

Returns

A string in the format real + imaginaryj.

Example
c = Complex<Double>(3, 4)
print(c.toString())  # Output: 3 + 4j