| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Parse directories to be packages | gingerBill | 2018-05-21 | 1 | -49/+0 |
| | | |||||
| * | Make `any` use `typeid` rather than `^Type_Info` | gingerBill | 2018-05-12 | 1 | -4/+4 |
| | | |||||
| * | Update core library with `cstring` | gingerBill | 2018-02-28 | 1 | -0/+4 |
| | | |||||
| * | Revert `map` to be a value type and not a reference type | gingerBill | 2017-12-21 | 1 | -4/+3 |
| | | | | | (Implement code for "const ref" parameters) | ||||
| * | `map` is internally backed by a pointer (i.e. a "reference type") | gingerBill | 2017-12-17 | 1 | -1/+5 |
| | | |||||
| * | Remove `struct #ordered` | gingerBill | 2017-12-17 | 1 | -5/+5 |
| | | |||||
| * | Change how abs, min, max, and clamp are implemented for floats | gingerBill | 2017-12-11 | 1 | -1/+4 |
| | | |||||
| * | Fix proc groups from import names | gingerBill | 2017-12-10 | 1 | -1/+13 |
| | | |||||
| * | New slice memory layout (ptr+len); `byte` | gingerBill | 2017-11-26 | 1 | -1/+0 |
| | | |||||
| * | Use comma for struct field separators (disallow nesting) | Ginger Bill | 2017-09-21 | 1 | -18/+18 |
| | | |||||
| * | v0.6.2; Use Ada_Case for typesv0.6.2 | Ginger Bill | 2017-08-03 | 1 | -4/+4 |
| | | |||||
| * | Use semicolons as field delimiters in records | Ginger Bill | 2017-07-10 | 1 | -13/+13 |
| | | |||||
| * | Remove `type` prefix declarations | Ginger Bill | 2017-06-28 | 1 | -25/+24 |
| | | |||||
| * | Declaration grouping uses () rather than {}; Fix some problem with ↵ | Ginger Bill | 2017-06-17 | 1 | -2/+2 |
| | | | | | compilation on *nix | ||||
| * | Declaration grouping uses braces rather than parentheses | Ginger Bill | 2017-06-13 | 1 | -2/+2 |
| | | |||||
| * | Pascal style declaration grouping with () | Ginger Bill | 2017-06-12 | 1 | -23/+25 |
| | | |||||
| * | Prefix `type` and `let` to replace `immutable` | Ginger Bill | 2017-06-12 | 1 | -6/+6 |
| | | |||||
| * | Remove := with var and :: with const | Ginger Bill | 2017-06-12 | 1 | -5/+5 |
| | | |||||
| * | Make `rune` a basic type and not an alias; Remove `byte` | Ginger Bill | 2017-06-06 | 1 | -1/+1 |
| | | |||||
| * | Change naming convention from Ada_Like to RustLike | Ginger Bill | 2017-05-28 | 1 | -4/+4 |
| | | | | | | | | | | | | | | Naming Conventions: In general, PascalCase for types and snake_case for values Import Name: snake_case (but prefer single word) Types: PascalCase Union Variants: PascalCase Enum Values: PascalCase Procedures: snake_case Local Variables: snake_case Constant Variables: SCREAMING_SNAKE_CASE | ||||
| * | Add `#ordered` to the "raw" types in raw.odin | gingerBill | 2017-05-12 | 1 | -5/+5 |
| | | |||||
| * | Fix alignment and size bug of enums; Remove #ordered and make the default ↵ | Ginger Bill | 2017-05-02 | 1 | -5/+5 |
| | | | | | #ordered. | ||||
| * | Syntax change: cast(T)x => T(x); union_cast(T)x => x.(T); transmute(T)x => ↵ | Ginger Bill | 2017-04-30 | 1 | -1/+1 |
| | | | | | | | transmute(T, x); `y:=^x` => `y:=&x;` Sorry for all the code breaking in this commit :( | ||||
| * | Calling convention, change from bitcast to transmute | Ginger Bill | 2017-04-16 | 1 | -2/+2 |
| | | |||||
| * | Add raw.odin | Ginger Bill | 2017-04-09 | 1 | -0/+27 |
| Forgot to do this in the previous commit, whoops :P | |||||