MaiHD

Results 3 issues of MaiHD

When build tests/test0.c program, it's crashed when run on Windows compile with `zig cc`. Because in ggml_time_us() `timer_freq` are not inialized. I fixed by adding ggml_time_init(). Src: https://github.com/maihd/fun-with-zig/blob/main/ggml_bindings/src/main.zig

The below code will crash when press F5: ```C# using System; public struct Vector2 { public float x; public float y; public this() { this = default; } public this(float...