| Commit message (Expand) | Author | Age | Files | Lines |
| * | v0.1.0v0.1.0 | Ginger Bill | 2017-02-11 | 3 | -4/+4 |
| * | Dynamic array syntax [...]Type; make entities private with a prefix of `_`; f... | Ginger Bill | 2017-02-11 | 4 | -15/+15 |
| * | Only check files that have been truly imported. | Ginger Bill | 2017-02-11 | 2 | -8/+7 |
| * | Remove need for `type` keyword | Ginger Bill | 2017-02-10 | 5 | -36/+36 |
| * | Remove Maybe type; Enum `names` | Ginger Bill | 2017-02-10 | 6 | -81/+70 |
| * | Map type info and fmt printing | Ginger Bill | 2017-02-07 | 2 | -28/+95 |
| * | `map` immutable fields: count, capacity, allocator | Ginger Bill | 2017-02-06 | 1 | -4/+7 |
| * | `map` string keys and `for` iterator | Ginger Bill | 2017-02-06 | 1 | -1/+4 |
| * | dynamic `map` insertion and lookup | Ginger Bill | 2017-02-06 | 1 | -6/+9 |
| * | Nearly implement dynamics map, missing insertion | Ginger Bill | 2017-02-06 | 1 | -36/+130 |
| * | Begin writing dynamic map procs and fix `using` bug in IR | Ginger Bill | 2017-02-05 | 2 | -106/+219 |
| * | Add `types.odin`; Begin work on `map` | Ginger Bill | 2017-02-05 | 3 | -1/+212 |
| * | Custom struct alignment | Ginger Bill | 2017-02-05 | 1 | -0/+3 |
| * | Update code from OSX merge to be consistent with the rest of the code | Ginger Bill | 2017-02-01 | 2 | -54/+16 |
| * | Merge branch 'master' of https://github.com/zhiayang/Odin | zhiayang | 2017-02-02 | 2 | -2/+22 |
| |\ |
|
| | * | Change internals of `context`; Disable `immutable` | Ginger Bill | 2017-02-01 | 2 | -2/+22 |
| * | | oh boy, basic osx/unix support | zhiayang | 2017-02-02 | 2 | -0/+231 |
| |/ |
|
| * | Change vector memory layout and operations; `for in` vector. | Ginger Bill | 2017-01-30 | 2 | -14/+25 |
| * | Allow _ in floats | Ginger Bill | 2017-01-29 | 1 | -2/+2 |
| * | sprint*, variadic append works correctly now. | Ginger Bill | 2017-01-29 | 1 | -0/+19 |
| * | Variadic `append` | Ginger Bill | 2017-01-29 | 1 | -6/+8 |
| * | Dynamic arrays | Ginger Bill | 2017-01-29 | 3 | -44/+91 |
| * | Fix untyped to `any` assignments. Fixed crash when arguments with no value ar... | Ginger Bill | 2017-01-29 | 1 | -1/+1 |
| * | Changed #foreign user32 to gdi32 where this was wrong. | thebirk | 2017-01-28 | 1 | -3/+3 |
| * | Overloaded `free`; 3 dotted ellipsisv0.0.6a | Ginger Bill | 2017-01-28 | 4 | -19/+19 |
| * | Fix parsing for block/if expression within if/for/etc. statementsv0.0.6 | Ginger Bill | 2017-01-27 | 1 | -12/+20 |
| * | Remove while loop and readd c-style for loops i.e. all loops are just `for` | Ginger Bill | 2017-01-27 | 6 | -18/+15 |
| * | `in` keyword for `for` and `match type` | Ginger Bill | 2017-01-27 | 5 | -61/+61 |
| * | Fix utf8 stuff, Allow _ in numbers, Begin writing next demo code. | Ginger Bill | 2017-01-27 | 2 | -30/+44 |
| * | Remove case sensitivity for libraries on windows | Ginger Bill | 2017-01-26 | 2 | -27/+27 |
| * | Library names - Only link with used foreign libraries | Ginger Bill | 2017-01-26 | 6 | -131/+132 |
| * | Fix pointer differences (issue #11); remove #dll_import | Ginger Bill | 2017-01-26 | 2 | -56/+68 |
| * | Basic float printing | Ginger Bill | 2017-01-26 | 1 | -344/+44 |
| * | Change casting syntax: `cast(T)x` `transmute(T)x` et al. | Ginger Bill | 2017-01-25 | 10 | -221/+218 |
| * | `using` `immutable` `thread_local` on variable declarations | Ginger Bill | 2017-01-19 | 1 | -1/+1 |
| * | Closed range `...` (both inclusive); Type comparisons with == and != | Ginger Bill | 2017-01-19 | 1 | -1/+1 |
| * | Change cast syntax, int(x), []byte(s), (^int)(p) | Ginger Bill | 2017-01-17 | 10 | -205/+205 |
| * | Fix conversion of untyped integers to pointers | Ginger Bill | 2017-01-17 | 2 | -3/+2 |
| * | Comma for all field separators; Overloaded procedures follow exportation rules | Ginger Bill | 2017-01-17 | 6 | -153/+149 |
| * | Best viable overloading procedure algorithm; `no_alias`; call expr style casts | Ginger Bill | 2017-01-17 | 3 | -10/+10 |
| * | Err on ambiguous overloaded calls | Ginger Bill | 2017-01-15 | 3 | -89/+89 |
| * | Bug fix: comparisons with shifts | Ginger Bill | 2017-01-15 | 2 | -37/+362 |
| * | Handle enums correctly with printf | Ginger Bill | 2017-01-08 | 1 | -19/+106 |
| * | "Old style" enums | Ginger Bill | 2017-01-08 | 2 | -39/+39 |
| * | fmt.printf - Go style due to runtime type safety | Ginger Bill | 2017-01-08 | 2 | -354/+696 |
| * | Fix core library; Disable adding entity definitions for blank identifiersv0.0.5e | Ginger Bill | 2017-01-07 | 4 | -67/+47 |
| * | Rename llir -> ir | Ginger Bill | 2017-01-04 | 1 | -13/+5 |
| * | Fix init_arena_from_context | Ginger Bill | 2017-01-03 | 1 | -1/+1 |
| * | `while`; `range` is now `for`; remove ++ and -- | Ginger Bill | 2017-01-03 | 9 | -134/+145 |
| * | `range` statement | Ginger Bill | 2017-01-02 | 1 | -0/+4 |