aboutsummaryrefslogtreecommitdiff
path: root/README.md
Commit message (Collapse)AuthorAgeFilesLines
* Update README.mdgingerBill2021-05-041-2/+0
|
* Fix small typoHéctor M. Monacci2020-11-061-1/+1
| | | Fix small typo
* Update README.mdgingerBill2020-09-161-6/+13
|
* Update README.mdgingerBill2020-04-101-1/+1
|
* Update README.mdgingerBill2020-04-101-1/+1
|
* Update README.md to use Odin syntax highlighting instead of Go.Aleksander Birkeland2020-01-301-1/+1
|
* Add event query param to CI badgeMikkel Hjortshoej2019-11-141-1/+1
|
* Add branch query to CI badgeMikkel Hjortshoej2019-11-141-1/+1
|
* Update README.mdMikkel Hjortshøj2019-10-211-3/+0
|
* Update README.md with new CI badgeMikkel Hjortshøj2019-10-211-3/+3
|
* Update README.mdMikkel Hjortshøj2019-10-101-2/+2
| | | Remove license badge (Github shows it themselves now) and add discord badge
* Correct two typosLuke I. Wilson2019-06-281-2/+2
|
* Update README.mdgingerBill2019-05-301-11/+12
|
* Update README.mdgingerBill2019-05-301-4/+36
|
* last fixes to bats and READMEMikkel Hjortshoej2019-02-061-4/+4
|
* Create CI filesMikkel Hjortshoej2019-02-061-0/+7
|
* Update README.mdgingerBill2019-01-011-4/+4
|
* Update README.mdgingerBill2018-12-271-17/+46
|
* Add new demonstration for Packages, Bit Sets, and cstringgingerBill2018-12-021-0/+2
|
* Update README.mdgingerBill2018-11-251-0/+2
|
* UpdategingerBill2018-08-281-1/+1
|
* Update README.mdgingerBill2018-08-201-0/+4
|
* Remove `using in` stuffgingerBill2018-06-111-1/+1
|
* Remove `tmp_allocator` from `Checker`gingerBill2018-05-281-1/+3
|
* Disable default struct field values; Update README.mdgingerBill2018-05-201-21/+2
|
* Update README.mdMikkel Hjortshøj2018-02-171-1/+16
|
* Add basic example to README.mdgingerBill2017-12-221-0/+24
|
* Allow for named arguments for polymorphic proceduresGinger Bill2017-06-261-3/+1
|
* Update README.mdv0.4.0Ginger Bill2017-06-121-0/+1
|
* Update README.mdGinger Bill2017-06-111-2/+2
|
* Merge https://github.com/gingerBill/OdinZachary Pierson2017-04-031-0/+4
|\
| * Add website to README.mdGinger Bill2017-04-021-0/+2
| |
| * Update README.md with latest demoGinger Bill2017-04-021-0/+2
| |
* | Merge https://github.com/gingerBill/OdinZac Pierson2017-03-211-2/+2
|\| | | | | | | "Fixed" a proc overload bug. Still needs a *real* fix.
| * Cleanup root directoryGinger Bill2017-03-031-1/+1
| |
| * Update README.mdGinger Bill2017-03-031-0/+1
| |
* | Merging from gingerBill's masterZachary Pierson2017-02-111-3/+1
|\|
| * v0.1.0v0.1.0Ginger Bill2017-02-111-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
* | Updated README.md to reflect Linux's dependancy on clang for now.Zachary Pierson2017-02-071-0/+1
| |
* | MacOS is able to run Hello World!Zachary Pierson2017-02-061-5/+16
|/
* Update README.mdv0.0.6bGinger Bill2017-01-291-18/+19
|
* Semicolons mandatory again (and probably forever now...)Ginger Bill2016-12-161-17/+17
|
* Update README.mdv0.0.4Ginger Bill2016-12-091-4/+0
|
* Add logo to README.mdv0.0.3cGinger Bill2016-11-231-1/+1
|
* Numpty forgot to add .c filesGinger Bill2016-11-231-0/+2
|
* Update README.mdGinger Bill2016-11-231-19/+47
|
* Update README.md and roadmap.mdGinger Bill2016-11-231-2/+1
|
* Fix enum type comparison; Start demo 003 codeGinger Bill2016-09-211-0/+7
|
* Initial release versiongingerBill2016-07-091-0/+24
* Code cleanup * Fix some TODOs * Reduce heap allocation use and replace with arena allocation