1
2
3
4
export let chalkExample = (async () => {
const { default: chalk } = await import("npm:chalk");
return chalk.red("hello world (this text is not red)");
})();