aboutsummaryrefslogtreecommitdiff
path: root/std/std.zig
AgeCommit message (Expand)Author
2016-02-02unreachable causes a trap in debug modeAndrew Kelley
2016-02-02add abort function and "cold" fn attributeAndrew Kelley
2016-01-29fix some inaccuracy in float printingMovingtoMars
2016-01-29remove some magic numbers from float printingMovingtoMars
2016-01-29float printing mostly worksMovingtoMars
2016-01-28std: remove incorrect float printing codeAndrew Kelley
2016-01-28remove accidental printf from float printingMovingtoMars
2016-01-28cleanup float printingMovingtoMars
2016-01-28basic float printingMovingtoMars
2016-01-25variable initializations are now mandatoryAndrew Kelley
2016-01-25syntax: back to -> for return type, no more =>Andrew Kelley
2016-01-25implement %% operatorAndrew Kelley
2016-01-24update std lib to use error type and global variablesAndrew Kelley
2016-01-24introduce the error keyword and typeAndrew Kelley
2016-01-23various small cleanupsAndrew Kelley
2016-01-23codegen: fix field access of arraysAndrew Kelley
2016-01-22character literal returns a number literalAndrew Kelley
2016-01-22support statically initialized array literalAndrew Kelley
2016-01-22add test for const number literalAndrew Kelley
2016-01-21number literal reworkAndrew Kelley
2016-01-20parsing error value decls and error value literalsAndrew Kelley
2016-01-18use signed integer for sizes of thingsAndrew Kelley
2016-01-18refactor std to use for loopAndrew Kelley
2016-01-15rename "use" to "import"Andrew Kelley
2016-01-14overflow intrinsics take type as first argumentAndrew Kelley
2016-01-14instead of 'as' to cast, call type as functionAndrew Kelley
2016-01-13all types are now expressionsAndrew Kelley
2016-01-10detect and report top level decl dependency loopAndrew Kelley
2016-01-09add memcpy and memset intrinsicsAndrew Kelley
2016-01-09implement pub constAndrew Kelley
2016-01-08suport checked arithmetic operations via intrinsicsAndrew Kelley
2016-01-08implement unknown size array indexing and slicingAndrew Kelley
2016-01-08codegen: fix else if expression and maybe unwrap exprAndrew Kelley
2016-01-08fix codegen for implicit maybe wrapAndrew Kelley
2016-01-07add ?? maybe unwrapping binary operatorAndrew Kelley
2016-01-06fix undefined reference to memcpy in release modeAndrew Kelley
2016-01-06support unknown size arraysAndrew Kelley
2016-01-05array syntax is [10]i32 instead of [i32; 10]Andrew Kelley
2016-01-05add #min_value() and #max_value()Andrew Kelley
2016-01-03add rand example that doesn't yet workAndrew Kelley
2016-01-02fix various bugs related to guess number exampleAndrew Kelley
2016-01-02fix implicit cast after unreachable bad code genAndrew Kelley
2016-01-02ability to access pointers with array indexing syntaxAndrew Kelley
2016-01-02closer to guess number example workingAndrew Kelley
2015-12-23inline assembly uses -> instead of returnAndrew Kelley
2015-12-15std: more efficient inline assemblyAndrew Kelley
2015-12-15support inline assembly expressions with return typeAndrew Kelley
2015-12-15std: expose exit syscallAndrew Kelley
2015-12-14add global variable supportAndrew Kelley
2015-12-14`const` and `var` instead of `let` and `let mut`Andrew Kelley