pub fn move_cursor_right(n: usize)
Moves the cursor to the right by the specified number of characters.
n
use console_utils::move_cursor_right; // Move the cursor right by 5 characters move_cursor_right(5);