Prompts the user for input and returns their response
String promptUser(String question) { stdout.write('$_orange$question (y/n): $_reset'); return stdin.readLineSync()?.toLowerCase() ?? 'n'; }