Change interval syntax: .. open range, ..< half-closed range

This commit is contained in:
Ginger Bill
2017-04-20 23:22:45 +01:00
parent c5411a25a9
commit a713e33007
15 changed files with 98 additions and 59 deletions
+1 -1
View File
@@ -335,7 +335,7 @@ _alloc_command_line_arguments :: proc() -> []string {
}
}
return cast(string)buf[..i];
return cast(string)buf[0..<i];
}
arg_count: i32;