Reduce number of range and slice operators #239

Replace .. and ... with : and ..
This commit is contained in:
gingerBill
2018-08-01 21:34:59 +01:00
parent a6fe656f21
commit 0718f14774
31 changed files with 204 additions and 219 deletions
+2 -2
View File
@@ -32,7 +32,7 @@ main :: proc() {
/*
push_allocator x {
...
..
}
is equivalent to:
@@ -42,7 +42,7 @@ main :: proc() {
__context.allocator = x
defer __context.allocator = prev_allocator
...
..
}
*/