| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Build as C++ | Ginger Bill | 2017-06-08 | 1 | -977/+0 |
| | | |||||
| * | Make `rune` a basic type and not an alias; Remove `byte` | Ginger Bill | 2017-06-06 | 1 | -3/+3 |
| | | |||||
| * | `bit_field`; Lexical sugar operators ≠ ≤ ≥ | Ginger Bill | 2017-06-03 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | Example below: // See: https://en.wikipedia.org/wiki/Bit_field BoxProps :: bit_field { opaque : 1, fill_colour : 3, _ : 4, show_border : 1, border_colour : 3, border_style : 2, _ : 2, width : 4, height : 4, _ : 8, } | ||||
| * | Remove `quaternion128` and `quaternion256` as core types | Ginger Bill | 2017-06-01 | 1 | -3/+1 |
| | | |||||
| * | `default:` to `case:`; `no_alias` to `#no_alias` | Ginger Bill | 2017-05-27 | 1 | -3/+0 |
| | | |||||
| * | Add %% operator (divisor modulo) | Ginger Bill | 2017-05-09 | 1 | -1/+4 |
| | | |||||
| * | Fix issue #63 for block comments not terminating at an EOF | Ginger Bill | 2017-05-09 | 1 | -1/+3 |
| | | |||||
| * | Fix subtype polymorphism implicit conversion | Ginger Bill | 2017-04-30 | 1 | -3/+0 |
| | | |||||
| * | Syntax change: cast(T)x => T(x); union_cast(T)x => x.(T); transmute(T)x => ↵ | Ginger Bill | 2017-04-30 | 1 | -17/+19 |
| | | | | | | | transmute(T, x); `y:=^x` => `y:=&x;` Sorry for all the code breaking in this commit :( | ||||
| * | Fix issue #51; begin work on `atomic` types | Ginger Bill | 2017-04-28 | 1 | -0/+1 |
| | | |||||
| * | Change interval syntax: .. open range, ..< half-closed range | Ginger Bill | 2017-04-20 | 1 | -2/+2 |
| | | |||||
| * | Fix bug with union literal checking crashing the compiler | Ginger Bill | 2017-04-18 | 1 | -2/+2 |
| | | |||||
| * | Fix error printing for basic directives | Ginger Bill | 2017-04-17 | 1 | -16/+16 |
| | | |||||
| * | Fix `map` assignment bug due to growth | Ginger Bill | 2017-04-11 | 1 | -0/+2 |
| | | |||||
| * | Basic Linux Build! | Ginger Bill | 2017-04-09 | 1 | -1/+1 |
| | | |||||
| * | Fix issue #31; Removed `down_cast` | Ginger Bill | 2017-04-04 | 1 | -1/+0 |
| | | |||||
| * | len, cap, make; remove .count, .capacity, new_slice | Ginger Bill | 2017-04-02 | 1 | -4/+6 |
| | | |||||
| * | Add Quaternions: quaternion128, quaternion256 | Ginger Bill | 2017-04-01 | 1 | -1/+3 |
| | | |||||
| * | Complex numbers: complex64 complex128 | Ginger Bill | 2017-04-01 | 1 | -3/+9 |
| | | |||||
| * | Add branch labels for loops; using list | Ginger Bill | 2017-03-19 | 1 | -18/+18 |
| | | |||||
| * | Ellipsis is now just `..`; Remove half-closed range operator and treat all ↵ | Ginger Bill | 2017-02-26 | 1 | -9/+31 |
| | | | | | of them as half-closed; slice expression uses `..`; | ||||
| * | ++ -- statements; add strconv.odin (and replace some of the fmt procs); Fix ↵ | Ginger Bill | 2017-02-26 | 1 | -9/+9 |
| | | | | | ~ on 64 bit constants; Fix integer casts from smaller to larger size | ||||
| * | Prevent `cast` on pointer to union types | Ginger Bill | 2017-02-14 | 1 | -0/+2 |
| | | |||||
| * | Reimplement `immutable` with different rules. | Ginger Bill | 2017-02-14 | 1 | -0/+1 |
| | | |||||
| * | v0.1.0v0.1.0 | Ginger Bill | 2017-02-11 | 1 | -44/+32 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added: * Dynamic Arrays `[...]Type` * Dynamic Maps `map[Key]Value` * Dynamic array and map literals * Custom struct alignemnt `struct #align 8 { bar: i8 }` * Allow `_` in numbers * Variadic `append` * fmt.sprint* * Entities prefixes with an underscore do not get exported on imports * Overloaded `free` for pointers, slices, strings, dynamic arrays, and dynamic maps * enum types have an implict `names` field, a []string of all the names in that enum Removed: * Maybe/option types * immutable variables * Remove `type` keyword and other "reserved" keywords * `compile_assert` and `assert`return the value of the condition for semantic reasons Changed: * thread_local -> #thread_local * #include -> #load * Files only get checked if they are actually used * match x in y {} // For type match statements * Version numbering now starts from 0.1.0 and uses the convention: - major.minor.patch Fixes: * Many fmt.* fixes To come very Soon™: * Linux and OS X builds (unofficial ones do exist already) | ||||
| * | Dynamic array syntax [...]Type; make entities private with a prefix of `_`; ↵ | Ginger Bill | 2017-02-11 | 1 | -4/+4 |
| | | | | | fix extension checking | ||||
| * | Remove need for `type` keyword | Ginger Bill | 2017-02-10 | 1 | -123/+82 |
| | | |||||
| * | Remove Maybe type; Enum `names` | Ginger Bill | 2017-02-10 | 1 | -7/+9 |
| | | |||||
| * | Custom struct alignment | Ginger Bill | 2017-02-05 | 1 | -0/+1 |
| | | |||||
| * | Change internals of `context`; Disable `immutable` | Ginger Bill | 2017-02-01 | 1 | -2/+6 |
| | | |||||
| * | Dynamic arrays | Ginger Bill | 2017-01-29 | 1 | -25/+24 |
| | | |||||
| * | Overloaded `free`; 3 dotted ellipsisv0.0.6a | Ginger Bill | 2017-01-28 | 1 | -2/+4 |
| | | |||||
| * | Remove while loop and readd c-style for loops i.e. all loops are just `for` | Ginger Bill | 2017-01-27 | 1 | -1/+0 |
| | | |||||
| * | `in` keyword for `for` and `match type` | Ginger Bill | 2017-01-27 | 1 | -8/+5 |
| | | |||||
| * | Fix utf8 stuff, Allow _ in numbers, Begin writing next demo code. | Ginger Bill | 2017-01-27 | 1 | -15/+18 |
| | | |||||
| * | Change casting syntax: `cast(T)x` `transmute(T)x` et al. | Ginger Bill | 2017-01-25 | 1 | -1/+4 |
| | | |||||
| * | `using` `immutable` `thread_local` on variable declarations | Ginger Bill | 2017-01-19 | 1 | -0/+1 |
| | | |||||
| * | `immutable` field prefix | Ginger Bill | 2017-01-19 | 1 | -0/+1 |
| | | |||||
| * | Closed range `...` (both inclusive); Type comparisons with == and != | Ginger Bill | 2017-01-19 | 1 | -13/+13 |
| | | |||||
| * | Change cast syntax, int(x), []byte(s), (^int)(p) | Ginger Bill | 2017-01-17 | 1 | -60/+60 |
| | | |||||
| * | Comma for all field separators; Overloaded procedures follow exportation rules | Ginger Bill | 2017-01-17 | 1 | -3/+3 |
| | | |||||
| * | Best viable overloading procedure algorithm; `no_alias`; call expr style casts | Ginger Bill | 2017-01-17 | 1 | -0/+1 |
| | | |||||
| * | Fix build error caused by invalid iterator types in `for`v0.0.5c | Ginger Bill | 2017-01-05 | 1 | -0/+4 |
| | | |||||
| * | Fix line comments at the end of filev0.0.5b | Ginger Bill | 2017-01-05 | 1 | -1/+1 |
| | | |||||
| * | `while`; `range` is now `for`; remove ++ and -- | Ginger Bill | 2017-01-03 | 1 | -7/+8 |
| | | |||||
| * | Interval expressions in `range` | Ginger Bill | 2017-01-03 | 1 | -7/+46 |
| | | |||||
| * | `range` statement | Ginger Bill | 2017-01-02 | 1 | -4/+0 |
| | | |||||
| * | Fix parameter/field lists and #import #include syntax | Ginger Bill | 2017-01-02 | 1 | -3/+2 |
| | | |||||
| * | Begin transition to Jai-like syntax | Ginger Bill | 2017-01-01 | 1 | -2/+2 |
| | | |||||
| * | Add enum type info and fix enum casting | Ginger Bill | 2017-01-01 | 1 | -1/+0 |
| | | |||||