import { B } from "./B.ts";
import { thing } from "./common.ts";

export function A() {
  thing();
  B();
}