Prompts the user for input and returns their response.
static String inputPrompt(String prompt) { stdout.write(prompt); return stdin.readLineSync() ?? ''; }