Files

6 lines
90 B
JavaScript
Raw Permalink Normal View History

2018-08-07 11:23:28 +01:00
const helloWorld = function() {
2025-02-22 10:23:40 +09:00
return 'Hello, World!'
2021-05-18 11:43:45 +12:00
};
2017-08-17 13:47:39 -05:00
2021-03-03 15:13:24 +13:00
module.exports = helloWorld;