| Current Path : /home/kamilrogam/komp/2018/180513/git/simpleKanban/node_modules/optimist/example/ |
| Current File : /home/kamilrogam/komp/2018/180513/git/simpleKanban/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);