saltwater 0.11.0

A C compiler written in Rust, with a focus on good error messages.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// code: 1
struct p {
        int i;
        struct p *q;
    } my_p;
    int main() {
        my_p.q = &my_p;
        my_p.q->q->q->i = 1;
        return my_p.i;
    }