jan_flanders

Untitled

May 25th, 2012
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. package com;
  2. class Foo extends flash.display.Sprite
  3. {
  4.     private var bar:String;
  5.     public function new()
  6.     {
  7.         super();
  8.     }
  9. }
  10.  
  11. //-------------------------------------------
  12.  
  13. package;
  14. class Foo extends flash.display.Sprite
  15. {
  16.     private var bar:String;
  17.     public function new()
  18.     {
  19.         super();
  20.     }
  21. }
  22.  
  23. //-------------------------------------------
  24.  
  25. package;
  26. class Main extends flash.display.Sprite
  27. {
  28.     public static function main()
  29.     {
  30.         var foo1 = new com.Foo();
  31.         foo1.bar="hello";
  32.        
  33.         var foo2 = new Foo();
  34.         foo2.bar = "hello";
  35.     }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment