Your IP : 216.73.216.236


Current Path : /home/kamilrogam/komp/2018/180513/git/simpleKanban/node_modules/optimist/example/
Upload File :
Current File : /home/kamilrogam/komp/2018/180513/git/simpleKanban/node_modules/optimist/example/divide.js

#!/usr/bin/env node

var argv = require('optimist')
    .usage('Usage: $0 -x [num] -y [num]')
    .demand(['x','y'])
    .argv;

console.log(argv.x / argv.y);