export function echo(...args: Parameters<typeof console.log>) {
  console.log(...args);
}
