aboutsummaryrefslogtreecommitdiff
path: root/doc/langref.md
AgeCommit message (Expand)Author
2016-02-05parsing code for defer and moreAndrew Kelley
2016-02-05update for loop syntaxAndrew Kelley
2016-02-04switch statements resolve peer compatibilityAndrew Kelley
2016-02-01inline is a keyword instead of a directiveAndrew Kelley
2016-02-01add ?? prefix operatorAndrew Kelley
2016-01-31parseh handles typedef void betterAndrew Kelley
2016-01-31parseh understands types better and handles some situations betterAndrew Kelley
2016-01-29parseh understands variable declarationsAndrew Kelley
2016-01-28ability to specify function typeAndrew Kelley
2016-01-28parser: allow missing fn name and missing param namesAndrew Kelley
2016-01-26different extern syntax and simplify parsing top level declsAndrew Kelley
2016-01-25variable initializations are now mandatoryAndrew Kelley
2016-01-25add the C integer typesAndrew Kelley
2016-01-25implement compile time string concatenationAndrew Kelley
2016-01-25syntax: back to -> for return type, no more =>Andrew Kelley
2016-01-25implement %% prefix operatorAndrew Kelley
2016-01-25implement %% operatorAndrew Kelley
2016-01-24introduce the error keyword and typeAndrew Kelley
2016-01-22add undefined reserved wordAndrew Kelley
2016-01-20parsing error value decls and error value literalsAndrew Kelley
2016-01-20Merge branch 'master' of github.com:andrewrk/zigAndrew Kelley
2016-01-20basic support for switch expressionAndrew Kelley
2016-01-20start working on lang specMovingtoMars
2016-01-19add switch statement support to parserAndrew Kelley
2016-01-19add switch statement to language referenceAndrew Kelley
2016-01-18add for loop which can iterate over arraysAndrew Kelley
2016-01-15rename "use" to "import"Andrew Kelley
2016-01-15reduce precedence of {} suffix operatorAndrew Kelley
2016-01-14parser: type expressions cannot be assignmentAndrew Kelley
2016-01-14instead of 'as' to cast, call type as functionAndrew Kelley
2016-01-13all types are now expressionsAndrew Kelley
2016-01-10update enum parsing to new planAndrew Kelley
2016-01-10parsing enum declarationsAndrew Kelley
2016-01-08rename `restrict` to `noalias`Andrew Kelley
2016-01-08suport checked arithmetic operations via intrinsicsAndrew Kelley
2016-01-08add restrict qualifier on pointer argumentsAndrew Kelley
2016-01-07implement array slicing syntaxAndrew Kelley
2016-01-07add ?? maybe unwrapping binary operatorAndrew Kelley
2016-01-06support pub structs. move rand to std lib.Andrew Kelley
2016-01-06support unknown size arraysAndrew Kelley
2016-01-05array syntax is [10]i32 instead of [i32; 10]Andrew Kelley
2016-01-04add pointer dereferencing operatorAndrew Kelley
2016-01-04add member functionsAndrew Kelley
2016-01-03implement #sizeof()Andrew Kelley
2016-01-03add #typeof() compiler functionAndrew Kelley
2016-01-02closer to guess number example workingAndrew Kelley
2015-12-31block expressions require parensAndrew Kelley
2015-12-26parse if maybe expressionAndrew Kelley
2015-12-24implement continue expressionAndrew Kelley
2015-12-24add break expressionAndrew Kelley