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