Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com;
- class Foo extends flash.display.Sprite
- {
- private var bar:String;
- public function new()
- {
- super();
- }
- }
- //-------------------------------------------
- package;
- class Foo extends flash.display.Sprite
- {
- private var bar:String;
- public function new()
- {
- super();
- }
- }
- //-------------------------------------------
- package;
- class Main extends flash.display.Sprite
- {
- public static function main()
- {
- var foo1 = new com.Foo();
- foo1.bar="hello";
- var foo2 = new Foo();
- foo2.bar = "hello";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment