* @throws Exception
* @todo Implémenter cette méthode abstrasy.PCFx
*/
public Node eval(Node startAt) throws Exception {
startAt.isGoodArgsCnt(1,2);
OutputTextArea out = Interpreter.mySelf().getOutputTextArea();
if(out!=null){
if(startAt.size()==2){
String x = (Node.node2VString(startAt.getSubNode(1, Node.VTYPE_VALUABLE))).getString();
out.clr(x);
if(!System.getProperty("os.name").toLowerCase().startsWith("windows")){
byte[] esc=new byte[]{
27,91,50,74, // <esc>[2J
27,91,72 // <esc>[H
};
System.out.write(esc);
}
System.out.print(x);
}
else{
if(!System.getProperty("os.name").toLowerCase().startsWith("windows")){
byte[] esc=new byte[]{
27,91,50,74, // <esc>[2J
27,91,72 // <esc>[H
};
System.out.write(esc);
}
out.clr();
}
}
return null;
}