This website works better with JavaScript
Trang chủ
Khám phá
Trợ giúp
Đăng nhập
c
/
odin-lang.Odin
mirror of
https://github.com/odin-lang/Odin
Xem
2
Star
0
Fork
0
Các tập tin
Các vấn đề
0
Wiki
Browse Source
Fix constant conversion for complex numbers from integers
Ginger Bill
8 năm trước cách đây
mục cha
dc303cde21
commit
90fc9abeae
1 tập tin đã thay đổi
với
2 bổ sung
và
0 xóa
Split View
Hiển thị tình trạng sai khác
2
0
code/demo.odin
+ 2
- 0
code/demo.odin
Xem Tập Tin
@@ -5,5 +5,7 @@
main :: proc() {
x := 1+2i;
+ y := 3-4i;
+ x = x*y;
fmt.printf("%v\n", x);
}