我发现我错了,一个gist里似乎可以有多个文件!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| console.log("hello, world!"); | |
| var program = require("commander"); | |
| program | |
| .version('0.0.1') | |
| .usage('[options] [value ...]') | |
| .option("-s, --string <string>", "a string argument"); | |
| program.parse(process.argv); | |
| console.log(program.string); |