exercism/cfml/hello-world/HelloWorld.cfc

13 lines
159 B
Plaintext

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