mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-02 20:58:15 +00:00
Branch Statements, if init statement, File parsing errors
This commit is contained in:
@@ -1,10 +0,0 @@
|
||||
main :: proc() {
|
||||
type Vec2: struct { x, y: f32; }
|
||||
v := Vec2{1, 1};
|
||||
a := [2]int{1, 2}; // Array 2 of int
|
||||
s := []int{1, 2}; // Slice of int
|
||||
_, _ = a, s;
|
||||
// Equivalent to
|
||||
// sa := [2]int{1, 2}; s := sa[:];
|
||||
v.x = 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user