Difference between “new” and “gen”
问题 I've done a little playing around in the console and debugger, but I've still got some questions about how new and gen work differently from each other. What is the difference between using new to generate a struct verse using gen to generate a struct? Does "gen" use existing allocated memory and "new" allocate new memory? or both allocate memory? Does "new" generate everything like a "gen" statement? In cdnshelp it says "new" is a shallow struct, meaning struct fields are not allocated. Is