Andrew Kelley
|
a3c97081ca
|
add ?? maybe unwrapping binary operator
add null literal
fix number literal / maybe interactions
|
2016-01-07 03:23:38 -07:00 |
Andrew Kelley
|
5f0bfcac24
|
fix undefined reference to memcpy in release mode
when not depending on libc, we generate memcpy and memset
implementations.
|
2016-01-06 06:40:25 -07:00 |
Andrew Kelley
|
3c43bc9208
|
support unknown size arrays
|
2016-01-06 01:28:58 -07:00 |
Andrew Kelley
|
4ef062b9c8
|
array syntax is [10]i32 instead of [i32; 10]
|
2016-01-05 22:47:47 -07:00 |
Andrew Kelley
|
3327b0488d
|
add #min_value() and #max_value()
|
2016-01-05 06:30:49 -07:00 |
Andrew Kelley
|
b453345554
|
add rand example that doesn't yet work
|
2016-01-03 00:30:41 -07:00 |
Andrew Kelley
|
1abb4e59be
|
fix various bugs related to guess number example
|
2016-01-02 21:56:33 -07:00 |
Andrew Kelley
|
258bc73eee
|
fix implicit cast after unreachable bad code gen
|
2016-01-02 20:13:10 -07:00 |
Andrew Kelley
|
187d00ca83
|
ability to access pointers with array indexing syntax
closes #40
|
2016-01-02 19:47:36 -07:00 |
Andrew Kelley
|
968b85ad77
|
closer to guess number example working
|
2016-01-02 03:38:45 -07:00 |
Andrew Kelley
|
9ce36ba0cc
|
inline assembly uses -> instead of return
|
2015-12-23 15:49:34 -07:00 |
Andrew Kelley
|
673d638070
|
std: more efficient inline assembly
|
2015-12-15 01:55:52 -07:00 |
Andrew Kelley
|
a292eb8d64
|
support inline assembly expressions with return type
|
2015-12-15 00:46:56 -07:00 |
Andrew Kelley
|
66ca916805
|
std: expose exit syscall
|
2015-12-15 00:07:51 -07:00 |
Andrew Kelley
|
83b68c9f13
|
add global variable support
closes #12
|
2015-12-14 23:10:18 -07:00 |
Andrew Kelley
|
3049410260
|
`const` and `var` instead of `let` and `let mut`
closes #34
|
2015-12-14 18:51:07 -07:00 |
Andrew Kelley
|
f17e20d5fe
|
instead of *mut and *const, & and &const
closes #33
|
2015-12-14 18:10:25 -07:00 |
Andrew Kelley
|
630917b29b
|
std: factor out the write syscall and make it public
|
2015-12-14 03:06:54 -07:00 |
Andrew Kelley
|
e411467e1d
|
add number literal type
it gets implicitly casted to whatever is needed.
closes #24
|
2015-12-14 02:46:37 -07:00 |
Andrew Kelley
|
ac630d354d
|
std: print_str no longer requires length argument
add explicit casting support from array to string
|
2015-12-12 02:05:08 -07:00 |
Andrew Kelley
|
a10277bd94
|
prepare codebase for struct and string support
parsing code for structs, strings, and c string literals
partial semantic analyzing code for structs, strings, and c string literals
|
2015-12-12 00:10:37 -07:00 |
Andrew Kelley
|
d697404f64
|
hello world working without libc
|
2015-12-11 03:55:26 -07:00 |
Andrew Kelley
|
15ba5bc54e
|
provide std.zig and add it to import paths
|
2015-12-10 17:42:47 -07:00 |