Weed Wrote: > There does not need a static initialization of static members of the > class. There must be able to create objects of classes at compile time.
Well, these objects should be placed in some static variables, right? Static variables are initialized with static constructors. Global variables are static members of module, wich is similar to class and also has static constructor.