| Commit message (Expand) | Author | Age | Files | Lines |
| * | 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 |
| * | Fix parameter/field lists and #import #include syntax | Ginger Bill | 2017-01-02 | 12 | -514/+506 |
| * | Nearly finished Jai-like declarations | Ginger Bill | 2017-01-01 | 11 | -580/+561 |
| * | Begin transition to Jai-like syntax | Ginger Bill | 2017-01-01 | 12 | -1967/+1939 |
| * | Add enum type info and fix enum casting | Ginger Bill | 2017-01-01 | 2 | -159/+151 |
| * | Bring back `enum` but using iota | Ginger Bill | 2017-01-01 | 4 | -23/+39 |
| * | Block Expressions and `give` | Ginger Bill | 2016-12-30 | 3 | -78/+222 |
| * | Handle calling conventions correctly | Ginger Bill | 2016-12-22 | 10 | -122/+122 |
| * | Fix anonymous procedures and their dependencies | Ginger Bill | 2016-12-21 | 4 | -165/+166 |
| * | Generic (grouped) declarations: var, let, const, type, import, include | Ginger Bill | 2016-12-20 | 11 | -433/+464 |
| * | Remove `enum` for favour of Go-style enumerations | Ginger Bill | 2016-12-19 | 5 | -228/+187 |
| * | Begin generic declarations for lists of specifications | Ginger Bill | 2016-12-19 | 4 | -1448/+1452 |
| * | Change var decl syntax | Ginger Bill | 2016-12-18 | 10 | -323/+323 |
| * | Change record field syntax | Ginger Bill | 2016-12-18 | 6 | -116/+116 |
| * | var/const decl; remove `:` from parameter lists | Ginger Bill | 2016-12-18 | 12 | -1853/+1849 |
| * | Change of `proc` and `type` declaration syntax to "prefix" style | Ginger Bill | 2016-12-18 | 11 | -364/+364 |
| * | Minor changes | Ginger Bill | 2016-12-16 | 1 | -5/+0 |
| * | Add atomic.odin, sync.odin, sys/windows.odin | Ginger Bill | 2016-12-16 | 3 | -0/+723 |
| * | Semicolons mandatory again (and probably forever now...) | Ginger Bill | 2016-12-16 | 11 | -3011/+2499 |
| * | v0.0.4 - `odin build_dll`, atomic.odin, sync.odin | Ginger Bill | 2016-12-09 | 1 | -0/+31 |
| * | Fix procedure casting; SUBSYSTEM to CONSOLE in linker | Ginger Bill | 2016-12-09 | 1 | -1/+1 |
| * | Custom entry points on Windows (DllMain; WinMain) | Ginger Bill | 2016-12-09 | 1 | -4/+4 |
| * | `build_dll`; Require an entry point procedure `main` | Ginger Bill | 2016-12-08 | 4 | -12/+16 |