2022-11-16 01:12:50 +08:00

12 lines
208 B
Python

import ink
print('Once upon a time...')
index, val = ink.choice(
'There were two choices.',
'There were four lines of content.'
)
print(f'You selected {index}')
print('They lived happily ever after.')