(MOD) Reordered struct member "members" from "Array" from 2nd to 1st for a more convenient accessing to "Var.addr in Array.member[0]".

(MOD) Modified test.c.
This commit is contained in:
2024-06-26 16:54:21 +08:00
parent f5d82983a4
commit 8870e5e7db
2 changed files with 30 additions and 20 deletions

View File

@@ -4,8 +4,8 @@
# include <Compound/var.h>
typedef struct {
int len;
Var *members;
int len;
bool alive;
} Array;