Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / optimist / example / default_hash.js
1 #!/usr/bin/env node
2
3 var argv = require('optimist')
4     .default({ x : 10, y : 10 })
5     .argv
6 ;
7
8 console.log(argv.x + argv.y);