_index.ts_ ```ts export const helloWorld = (name = 'World') => { return `Hello ${name}!` } ``` This example currently fails parsing with `Unable to infer a main function export`, but this use case should work.