This website works better with JavaScript
Inicio
Explorar
Ayuda
Iniciar sesión
c
/
odin-lang.Odin
espejo de
https://github.com/odin-lang/Odin
Seguir
2
Destacar
0
Fork
0
Archivos
Incidencias
0
Wiki
Explorar el Código
Fix constant conversion for complex numbers from integers
Ginger Bill
hace 8 años
padre
dc303cde21
commit
90fc9abeae
Se han
modificado 1 ficheros
con
2 adiciones
y
0 borrados
Dividir vista
Mostrar estadísticas de diff
2
0
code/demo.odin
+ 2
- 0
code/demo.odin
Ver fichero
@@ -5,5 +5,7 @@
main :: proc() {
x := 1+2i;
+ y := 3-4i;
+ x = x*y;
fmt.printf("%v\n", x);
}