xpp {

       string s = "Kimmie";

       node   MyNode;

       attr(MyNode)  MyAttr = s;

       xout("\r\nMyAttr = " + MyNode.MyAttr);

      

       xcall("MyProg.xml", MyNode);

      

       try {

              xout("\r\nIn the try");

              throw("Kimmie except!");

              xout("\r\nIn the try after the throw");

       } catch {

              xout("\r\nIn the exception");

       };

}