interface List { public Object head(); public List tail(); public List cons(Object h); public boolean isempty(); }