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
// succeeds
struct s my_s;
struct s {
    int i;
};
int main() {
    return my_s.i;
}