Nice.
using FixedPointNumbers
x = N0f8(0.8)
y = N0f8(0.8)
c = Complex(x, y)
println(c)
println(typeof(c))
works like a charm:
0.8N0f8 + 0.8N0f8*im
Complex{N0f8}
Nice.
using FixedPointNumbers
x = N0f8(0.8)
y = N0f8(0.8)
c = Complex(x, y)
println(c)
println(typeof(c))
works like a charm:
0.8N0f8 + 0.8N0f8*im
Complex{N0f8}