Exercism-JS/hello-world/hello-world.js
2022-05-05 13:21:53 -05:00

9 lines
204 B
JavaScript

//
// This is only a SKELETON file for the 'Hello World' exercise. It's been provided as a
// convenience to get you started writing code faster.
//
export function hello() {
return 'Hello, World!';
}