ejot
By: a guest | Jul 7th, 2008 | Syntax:
ActionScript | Size: 0.21 KB | Hits: 36 | Expires: Never
package
{
public class InterestingClass
{
public function method1():String {
return "I am method1";
}
public function method2(value:String):String {
return "You told me: " + value;
}
}
}