29 lines
683 B
JavaScript
29 lines
683 B
JavaScript
/* @noflow */
|
|
/* eslint-disable babel/func-params-comma-dangle */
|
|
/* eslint-disable flowtype/require-return-type */
|
|
const report = require('../dist');
|
|
|
|
async function chooseLife() {
|
|
const answer = await report.select('What do you choose?', 'Your choice', [
|
|
{
|
|
name: 'The blue pill',
|
|
value: 'blue',
|
|
},
|
|
{
|
|
name: 'The red pill',
|
|
value: 'red',
|
|
},
|
|
]);
|
|
|
|
switch (answer) {
|
|
case 'blue':
|
|
report.success('You choose knowledge, freedom and the sometimes painful truth of reality');
|
|
break;
|
|
case 'red':
|
|
report.success('You choose falsehood, security and the blissful ignorance of illusion');
|
|
break;
|
|
}
|
|
}
|
|
|
|
chooseLife();
|