compiler: add complex manipulation

* builtins: real, imag, complex
* printing of complex numbers

No support for complex arithmetic yet.
This commit is contained in:
Ayke van Laethem
2018-10-22 13:44:59 +02:00
parent 9393cdd5ed
commit 9b9b66a09d
7 changed files with 145 additions and 7 deletions
+3
View File
@@ -29,6 +29,9 @@ func main() {
// print float64
println(3.14)
// print complex128
println(5+1.2345i)
// print interface
println(interface{}(nil))