Christoffer Lerno

Results 1219 comments of Christoffer Lerno

Yes, I believe I just used the original script and just purged some unnecessary stuff and fixed what needed fixing until it worked. I didn't need x86_32 so I didn't...

Do you need it to work?

That should be fixed now but it should be updated further.

The actual docs are markdown, so theoretically they could be bundled with some tool for an offline PDF or HTML file. But I lack the time right now.

This is correct, as the compiler currently works but as an enhancement, this could be made to work in the general case, which will also increase the usefulness of the...

This should be completely supported now.

```c module test; extern fn void test(...); fn void main() { int[2] y; test(...y); } ``` This fails?

If you do: ```c extern fn void test(...); fn void main() { int[] y = { 1, 2 }; test(...y); } ``` Then this will fail, as you are splatting...

`int[*] y = { 1, 2 }` is the same as `int[2] y = { 1, 2 }`. `int[] y = { 1, 2 }` creates a slice, the former...

I've improved the error message now though, and enabled: ```c fn void test2(int a, int b) { } fn void main() { int[2] x = { 1, 2 }; test2(...x);...