class Var extends Klip{
    String x;
    Var(String x){this.x=x;}
    void welcome(Visitor v){
	v.visit(this);
    }
}
