Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
Remember the simple Items class from Example 17-1?
package {
public class Items {
fruit var orange:String = "Round citrus fruit";
color var orange:String = "Color obtained by mixing red and yellow";
public function Items () {
trace(fruit::orange);
trace(color::orange);
}
}
}