CreeperFace

Results 5 issues of CreeperFace

### Describe the bug I have a project that is written in V and only depends on standard V modules. I am on `linux` and cross-compilation to `windows` works fine...

Bug
OS: FreeBSD

Here is some C code that uses unions: ```c #include int main() { union { int i; int j; } u; u.i = 3; u.j = 5; printf("%d, %d\n", u.i,...

### Describe the bug Code: https://play.vlang.io/p/8f9bd1d04e ```v import os import arrays lines := os.read_lines('input')! coords := lines.map(fn (line string) [2]int { xs, ys := line.split_once(',') or { panic("invalid input") }...

Bug

### Describe the bug Code: https://play.vlang.io/p/a11c1c93c2 ```v fn get_value(a u8, b u8, c u8, d u8) u32 { return (u32(a)

Bug

### Describe the bug Compile the included code on linux, you will need wayland-client installed. ### Reproduction Steps ```v #flag linux -I/usr/include #flag linux -lwayland-client #include #include pub struct C.wl_interface...

Bug