projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
5e2ee82ff07b97e1c68778861706c481de221270
[platform/framework/web/crosswalk-tizen.git]
/
1
#!/usr/bin/env node
2
3
var argv = require('optimist')
4
.usage('Usage: $0 -x [num] -y [num]')
5
.demand(['x','y'])
6
.argv;
7
8
console.log(argv.x / argv.y);