pub fn move_cursor_down(n: usize)
Moves the cursor down by the specified number of lines.
n
use console_utils::move_cursor_down; // Move the cursor down by 2 lines move_cursor_down(2);