Websocket
[VSoRC/.git] / node_modules / node-static / 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);