Goubermouche / sigma

A compiled, statically typed, C-like, data oriented language with a focus on performance and low-level optimization using GPU acceleration via kernels.
MIT License
19 stars 0 forks source link

More than 5 args don't work on Linux #6

Open Goubermouche opened 9 months ago

Goubermouche commented 9 months ago

More than 5 args don't work on Linux:

i32 main() {
    printf("%d %d %d %d %d %d %d\n", 1, 2, 3, 4, 5, 6, 7);
    ret 0;
}