Files

6 lines
92 B
JavaScript
Raw Permalink Normal View History

2022-02-20 14:07:44 -05:00
const helloWorld = function () {
2023-01-21 12:53:41 -05:00
return "Hello, World!";
2022-02-20 14:07:44 -05:00
};
module.exports = helloWorld;