mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-15 10:22:23 -07:00
12 lines
139 B
Odin
12 lines
139 B
Odin
#import "fmt.odin";
|
|
#import "os.odin";
|
|
#import "math.odin";
|
|
|
|
|
|
main :: proc() {
|
|
x := 1+2i;
|
|
y := 3-4i;
|
|
x = x*y;
|
|
fmt.printf("%v\n", x);
|
|
}
|