···3434```js
3535import { isCancel, cancel, text } from '@clack/prompts';
36363737-const value = await text(/* TODO */);
3737+const value = await text({
3838+ message: 'What is the meaning of life?',
3939+});
38403941if (isCancel(value)) {
4042 cancel('Operation cancelled.');