updated readme

This commit is contained in:
Craig Condon
2011-11-26 13:26:18 -06:00
parent ee950f811c
commit bb380cb70f
31 changed files with 6010 additions and 4 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/env node
var argv = require('optimist')
.default({ x : 10, y : 10 })
.argv
;
console.log(argv.x + argv.y);