Prompts the user with a question and returns their trimmed input line.
@override String prompt(String question) { io.stdout.write(question); return io.stdin.readLineSync() ?? ''; }