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