/** * A simple Tree class for describing trees found in mother nature */ class Tree { /** * The type of bark found on this tree */ public var bark:String; /** * The number of branches on this tree */ public var branches:Number; public var roots:Number; }