// Implement inheritance
Function c_parent ()
{
THIS.TMP = "Hello World."
}
Function C_Child ()
C_Child.Prototype = new c_parent ();
VAR OBJ_CHILD = New C_CHILD ();
Wsh.echo (Obj_child.tmp);