// mod.ts/** * A module providing a function to say hello. * @module *//** * Return a hello message * * @param msg The hello message which will appear * @returns formatted hello message */exportfunction helloJsr(msg: string): string {
return`Hello, ${msg} from sy!`;
}