13 lines
159 B
Plaintext
13 lines
159 B
Plaintext
/**
|
|
* Your implmentation of the Hello World exercise
|
|
*/
|
|
component {
|
|
|
|
/**
|
|
* @returns A string greeting the world
|
|
*/
|
|
function hello() {
|
|
return '';
|
|
}
|
|
|
|
} |