Share Pastebin
Guest
Public paste!

ejot

By: a guest | Jul 7th, 2008 | Syntax: ActionScript | Size: 0.21 KB | Hits: 36 | Expires: Never
Copy text to clipboard
  1. package
  2. {
  3.         public class InterestingClass
  4.         {
  5.                 public function method1():String {
  6.                         return "I am method1";
  7.                 }
  8.                
  9.                 public function method2(value:String):String {
  10.                         return "You told me: " + value;
  11.                 }
  12.  
  13.         }
  14. }