This commit is contained in:
Namhyeon Go 2020-07-21 15:14:20 +09:00
commit 0585a1806f

View File

@ -41,7 +41,11 @@ exports.say = function() {
### 2. Write a file `sayhello.js` ### 2. Write a file `sayhello.js`
``` ```
var sayhello = require("lib/sayhello-lib"); var sayhello = require("lib/sayhello-lib");
sayhello.say(); return {
main: function() {
sayhello.say();
}
};
``` ```
### 3. Execute file on the command prompt ### 3. Execute file on the command prompt