| Current Path : /var/www/html/webconsoleold/node_modules/optimist/example/ |
| Current File : /var/www/html/webconsoleold/node_modules/optimist/example/default_singles.js |
#!/usr/bin/env node
var argv = require('optimist')
.default('x', 10)
.default('y', 10)
.argv
;
console.log(argv.x + argv.y);