10 lines
204 B
TypeScript
10 lines
204 B
TypeScript
// #docregion
|
|
/**
|
|
* @description This function returns a string.
|
|
*
|
|
* @returns {string} This string has the value 'Hello World'.
|
|
*/
|
|
// #docregion code2
|
|
function helloWorld() {
|
|
return 'Hello World';
|
|
} |