aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* v0.1.0v0.1.0Ginger Bill2017-02-1112-170/+164
* Dynamic array syntax [...]Type; make entities private with a prefix of `_`; f...Ginger Bill2017-02-1114-88/+172
* Only check files that have been truly imported.Ginger Bill2017-02-1110-198/+283
* Remove need for `type` keywordGinger Bill2017-02-1011-220/+195
* Remove Maybe type; Enum `names`Ginger Bill2017-02-1015-474/+345
* Fix global maps and initialize the preload types beforeGinger Bill2017-02-075-13/+27
* Map type info and fmt printingGinger Bill2017-02-077-52/+139
* `map` immutable fields: count, capacity, allocatorGinger Bill2017-02-064-10/+143
* `map` literalsGinger Bill2017-02-064-48/+138
* Make checking map key exists optionalGinger Bill2017-02-064-12/+25
* `map` string keys and `for` iteratorGinger Bill2017-02-065-14/+82
* dynamic `map` insertion and lookupGinger Bill2017-02-065-45/+55
* Nearly implement dynamics map, missing insertionGinger Bill2017-02-066-86/+327
* Begin writing dynamic map procs and fix `using` bug in IRGinger Bill2017-02-0511-307/+617
* Add `types.odin`; Begin work on `map`Ginger Bill2017-02-0510-40/+442
* Custom struct alignmentGinger Bill2017-02-059-350/+485
* Add build guards around compiling part of the code.Ginger Bill2017-02-011-1/+4
* Update code from OSX merge to be consistent with the rest of the codeGinger Bill2017-02-0115-249/+162
* Merge pull request #16 from zhiayang/mastergingerBill2017-02-0117-90/+577
|\
| * Merge branch 'master' of https://github.com/zhiayang/Odinzhiayang2017-02-0212-246/+257
| |\ | |/ |/|
* | Change internals of `context`; Disable `immutable`Ginger Bill2017-02-0111-231/+239
| * oh boy, basic osx/unix supportzhiayang2017-02-0216-75/+559
|/
* Remove dead codeGinger Bill2017-01-301-95/+0
* Change vector memory layout and operations; `for in` vector.Ginger Bill2017-01-309-308/+445
* Allow _ in floatsGinger Bill2017-01-294-26/+100
* sprint*, variadic append works correctly now.Ginger Bill2017-01-293-291/+31
* Variadic `append`Ginger Bill2017-01-295-44/+105
* Dynamic arraysGinger Bill2017-01-2913-120/+539
* Update README.mdv0.0.6bGinger Bill2017-01-294-22/+578
* Fix untyped to `any` assignments. Fixed crash when arguments with no value ar...Ginger Bill2017-01-295-283/+13
* Merge pull request #12 from thebirk/windows-odin-correctiongingerBill2017-01-281-3/+3
|\
| * Changed #foreign user32 to gdi32 where this was wrong.thebirk2017-01-281-3/+3
|/
* Overloaded `free`; 3 dotted ellipsisv0.0.6aGinger Bill2017-01-2812-48/+111
* Fix parsing for block/if expression within if/for/etc. statementsv0.0.6Ginger Bill2017-01-2710-281/+311
* Remove while loop and readd c-style for loops i.e. all loops are just `for`Ginger Bill2017-01-2711-127/+189
* `in` keyword for `for` and `match type`Ginger Bill2017-01-2710-94/+98
* Fix utf8 stuff, Allow _ in numbers, Begin writing next demo code.Ginger Bill2017-01-279-91/+391
* Remove case sensitivity for libraries on windowsGinger Bill2017-01-264-32/+31
* Library names - Only link with used foreign librariesGinger Bill2017-01-2614-251/+341
* Fix pointer differences (issue #11); remove #dll_importGinger Bill2017-01-269-91/+145
* Basic float printingGinger Bill2017-01-263-416/+85
* Change casting syntax: `cast(T)x` `transmute(T)x` et al.Ginger Bill2017-01-2524-540/+655
* Fix issue #8 - https://github.com/gingerBill/Odin/issues/8Ginger Bill2017-01-204-89/+66
* Fix issue #10Ginger Bill2017-01-207-127/+148
* `using` `immutable` `thread_local` on variable declarationsGinger Bill2017-01-1910-194/+165
* `immutable` field prefixGinger Bill2017-01-197-65/+87
* Closed range `...` (both inclusive); Type comparisons with == and !=Ginger Bill2017-01-197-266/+128
* Change cast syntax, int(x), []byte(s), (^int)(p)Ginger Bill2017-01-1717-356/+529
* Fix conversion of untyped integers to pointersGinger Bill2017-01-177-25/+130
* Comma for all field separators; Overloaded procedures follow exportation rulesGinger Bill2017-01-1714-286/+440