Update README.md

This commit is contained in:
Namhyeon Go 2020-07-21 14:52:42 +09:00 committed by GitHub
parent 908a49f7ee
commit 29d4c3cc0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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