class Seq extends Statement{
    Statement fst;
    Statement snd;
    Seq(Statement f,Statement s){
	fst=f;snd=s;
    }

    public <a> a welcome(Visitor<a> visitor){
	return visitor.vi(this);
    }
}
