klyn.math.Complex.toString
method
public readonly toString() as String:
DescriptionReturns a string representation of the complex number.
c = Complex<Int>(3, 4)
print(c.toString()) # Output: 3 + 4i
ReturnsA string in the format "real + imaginaryi". ``` c = Complex<Int>(3, 4) print(c.toString()) # Output: 3 + 4i ```