enum Colors
    with members
      Red: const instance of enum Colors 
      Yellow: const instance of enum Colors 
      Pink: const instance of enum Colors 
      Blue: const instance of enum Colors 
      Purple: const instance of enum Colors 
      Orange: const instance of enum Colors 
      Green: const instance of enum Colors 

f: function
    returning 
      nothing 
    with body 
      CompoundStmt
        Declaration of enum Fruits
            with members
              Apple: const instance of enum Fruits 
              Banana: const instance of enum Fruits 
              Pear: const instance of enum Fruits 
              Mango: const instance of enum Fruits 

        Declaration of fruit: instance of enum Fruits with initializer 
          Simple Initializer:             Name: Mango


