Skip to content

Instantly share code, notes, and snippets.

@zxqx
Created January 4, 2016 04:01
Show Gist options
  • Save zxqx/974b22e907ea9aa3acd5 to your computer and use it in GitHub Desktop.
Save zxqx/974b22e907ea9aa3acd5 to your computer and use it in GitHub Desktop.
Using prompt
var prompt = require('prompt');
prompt.start();
prompt.get(['diameter', 'angle'], function (err, result) {
console.log('Diameter: ' + result.diameter);
console.log('Angle: ' + result.angle);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment