mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-18 17:08:21 +00:00
11 lines
149 B
Odin
11 lines
149 B
Odin
#import "fmt.odin";
|
|
#import "os.odin";
|
|
#import "math.odin";
|
|
|
|
main :: proc() {
|
|
x := 1+2i+3j+4k;
|
|
y := conj(x);
|
|
z := x/y;
|
|
fmt.println(z, abs(z));
|
|
}
|