blob: 39a82a13e7f8942d397e442d168b9dac863f8613 [file]
import chalk from 'chalk';
import {NAME} from './name';
export function greeting(name: string): string {
return `Hello ${chalk.bold(name)}!`;
}
const sentence = greeting(NAME);
console.log(sentence);