Skip to content

Instantly share code, notes, and snippets.

View parsnips's full-sized avatar

Michael Parsons parsnips

View GitHub Profile
@parsnips
parsnips / app.js
Created December 12, 2012 23:10 — forked from mheadd/app.js
answer();
var date = ask('Please say a date.', {choices: 'http://path/to/date.xml'});
log("*** " + date.value + " ***");
say('You said ' + date.value);
var time = ask('Now, say a time.', {choices: 'http://path/to/time.xml'});
log("*** " + time.value + " ***");
say('You said ' + time.value);