
public interface Codelet {
    public boolean isComplete();
    public int getScore();
    public Codelet combineWith( Codelet other );
}
