pub fn move_cursor_to(x: usize, y: usize)
Moves the cursor to the specified position on the console.
x
y
use console_utils::control::move_cursor_to; // Move the cursor to column 3, row 5 move_cursor_to(3, 5);