exercism/cfml/hello-world/HelloWorld.cfc

13 lines
159 B
Plaintext
Raw Normal View History

2018-08-14 22:28:48 +00:00
/**
* Your implmentation of the Hello World exercise
*/
component {
/**
* @returns A string greeting the world
*/
function hello() {
return '';
}
}