export function pop$<T>(x: T[]): T[] {
  x.pop();
  return x;
}