class delta{ hello():String{ var z:String; z="猫"; return z; } } function sample(){ var sub=new delta(); var a=sub.hello(); $("#memo").html(a); }