| Commit message (Expand) | Author | Age | Files | Lines |
| * | Parse directories to be packages | gingerBill | 2018-05-21 | 1 | -266/+0 |
| * | Make core library use procedure groupings rather than normal overloading | gingerBill | 2017-12-04 | 1 | -3/+3 |
| * | Change push allocator system; update core libraries | gingerBill | 2017-11-09 | 1 | -1/+1 |
| * | Attributes; @(link_name="foo") | gingerBill | 2017-10-29 | 1 | -4/+4 |
| * | `match` to `switch`; Optional semicolons after "import" statements | Ginger Bill | 2017-10-01 | 1 | -1/+1 |
| * | v0.6.2; Use Ada_Case for typesv0.6.2 | Ginger Bill | 2017-08-03 | 1 | -2/+2 |
| * | Remove `atomic`, `++`, and `--` | Ginger Bill | 2017-07-18 | 1 | -11/+7 |
| * | Change precedence order for types e.g. ^T(x) == ^(T(x)) | Ginger Bill | 2017-07-13 | 1 | -3/+3 |
| * | `..` half closed range; `...` open range; `...` variadic syntax | Ginger Bill | 2017-07-07 | 1 | -1/+1 |
| * | :: style procedure declarations; remove old parsing code | Ginger Bill | 2017-06-28 | 1 | -11/+11 |
| * | Disable `var` and `const` declarations | Ginger Bill | 2017-06-28 | 1 | -95/+91 |
| * | Remove `let` | Ginger Bill | 2017-06-26 | 1 | -1/+1 |
| * | Declaration grouping uses () rather than {}; Fix some problem with compilatio... | Ginger Bill | 2017-06-17 | 1 | -4/+4 |
| * | Declaration grouping uses braces rather than parentheses | Ginger Bill | 2017-06-13 | 1 | -4/+4 |
| * | Pascal style declaration grouping with () | Ginger Bill | 2017-06-12 | 1 | -56/+60 |
| * | Prefix `type` and `let` to replace `immutable` | Ginger Bill | 2017-06-12 | 1 | -3/+3 |
| * | Prefix `proc` syntax | Ginger Bill | 2017-06-12 | 1 | -11/+11 |
| * | Remove := with var and :: with const | Ginger Bill | 2017-06-12 | 1 | -75/+75 |
| * | Make `rune` a basic type and not an alias; Remove `byte` | Ginger Bill | 2017-06-06 | 1 | -21/+21 |
| * | Change naming convention from Ada_Like to RustLike | Ginger Bill | 2017-05-28 | 1 | -2/+2 |
| * | Syntax change: cast(T)x => T(x); union_cast(T)x => x.(T); transmute(T)x => tr... | Ginger Bill | 2017-04-30 | 1 | -24/+24 |
| * | Change interval syntax: .. open range, ..< half-closed range | Ginger Bill | 2017-04-20 | 1 | -1/+1 |
| * | len, cap, make; remove .count, .capacity, new_slice | Ginger Bill | 2017-04-02 | 1 | -4/+4 |
| * | Ellipsis is now just `..`; Remove half-closed range operator and treat all of... | Ginger Bill | 2017-02-26 | 1 | -1/+1 |
| * | ++ -- statements; add strconv.odin (and replace some of the fmt procs); Fix ~... | Ginger Bill | 2017-02-26 | 1 | -7/+51 |
| * | Fix immutable rules; add some general documentation | Ginger Bill | 2017-02-14 | 1 | -2/+2 |
| * | Change internals of `context`; Disable `immutable` | Ginger Bill | 2017-02-01 | 1 | -2/+2 |
| * | Remove while loop and readd c-style for loops i.e. all loops are just `for` | Ginger Bill | 2017-01-27 | 1 | -4/+3 |
| * | Fix utf8 stuff, Allow _ in numbers, Begin writing next demo code. | Ginger Bill | 2017-01-27 | 1 | -26/+39 |
| * | Change casting syntax: `cast(T)x` `transmute(T)x` et al. | Ginger Bill | 2017-01-25 | 1 | -20/+20 |
| * | Change cast syntax, int(x), []byte(s), (^int)(p) | Ginger Bill | 2017-01-17 | 1 | -20/+20 |
| * | Comma for all field separators; Overloaded procedures follow exportation rules | Ginger Bill | 2017-01-17 | 1 | -3/+1 |
| * | `while`; `range` is now `for`; remove ++ and -- | Ginger Bill | 2017-01-03 | 1 | -6/+9 |
| * | Fix parameter/field lists and #import #include syntax | Ginger Bill | 2017-01-02 | 1 | -7/+7 |
| * | Nearly finished Jai-like declarations | Ginger Bill | 2017-01-01 | 1 | -7/+7 |
| * | Begin transition to Jai-like syntax | Ginger Bill | 2017-01-01 | 1 | -77/+71 |
| * | Handle calling conventions correctly | Ginger Bill | 2016-12-22 | 1 | -6/+6 |
| * | Fix anonymous procedures and their dependencies | Ginger Bill | 2016-12-21 | 1 | -6/+8 |
| * | Generic (grouped) declarations: var, let, const, type, import, include | Ginger Bill | 2016-12-20 | 1 | -27/+29 |
| * | Begin generic declarations for lists of specifications | Ginger Bill | 2016-12-19 | 1 | -11/+11 |
| * | Change var decl syntax | Ginger Bill | 2016-12-18 | 1 | -32/+32 |
| * | Change record field syntax | Ginger Bill | 2016-12-18 | 1 | -1/+1 |
| * | var/const decl; remove `:` from parameter lists | Ginger Bill | 2016-12-18 | 1 | -20/+19 |
| * | Change of `proc` and `type` declaration syntax to "prefix" style | Ginger Bill | 2016-12-18 | 1 | -7/+7 |
| * | Semicolons mandatory again (and probably forever now...) | Ginger Bill | 2016-12-16 | 1 | -95/+95 |
| * | Set :: as a single token | Ginger Bill | 2016-12-07 | 1 | -1/+1 |
| * | Go/BCPL style semicolon insertion during tokenizing stage | Ginger Bill | 2016-12-05 | 1 | -94/+94 |
| * | Semicolons are required; `when` condition for certain file scope declarations... | Ginger Bill | 2016-12-01 | 1 | -95/+95 |
| * | #rune "" to ''; Remove infix and postfix call notation | Ginger Bill | 2016-11-28 | 1 | -2/+2 |
| * | Minor Style Fixes | Ginger Bill | 2016-10-22 | 1 | -0/+3 |