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
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env node
var argv = require('optimist')
.string('x', 'y')
.argv
;
console.dir([ argv.x, argv.y ]);
/* Turns off numeric coercion:
./node string.js -x 000123 -y 9876
[ '000123', '9876' ]
*/