7 lines
86 B

export default function a() {
return 5;
}
export function b() {
return a() + 10;
}