Basically I'm searching for Zig equivalent to this C code: ```c // For context: typedef struct StructName { int x; int l; } StructName; int main() { StructName instance; return 0; } ```