first commit

This commit is contained in:
Volodya
2023-10-19 12:29:42 +03:00
commit 4b192915ed
15 changed files with 655 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
module.exports = 'Добрый вечер';
+11
View File
@@ -0,0 +1,11 @@
const morning = require('./morning');
const evening = require('./evening');
module.exports = {
getMorningMessage: function () {
console.log(morning);
},
getEveningMessage: function () {
console.log(evening);
},
};
+1
View File
@@ -0,0 +1 @@
module.exports = 'Доброе утро';