use Term;
use ;
/// Clears terminal content from the cursor position down and prints a newline.
///
/// This prevents inquire prompt artifacts (autocomplete suggestions, help text)
/// from leaking into the next shell prompt after Ctrl+C interrupts a prompt.
/// Waits for the user to press any key before continuing.
///
/// This is best-effort UI behavior; terminal errors are ignored so the program
/// does not panic after an otherwise successful operation.