pub fn move_cursor_left(n: usize)
Moves the cursor to the left by the specified number of characters.
n
use console_utils::control::move_cursor_left; // Move the cursor left by 4 characters move_cursor_left(4);