2025-12-23 19:17:16 +08:00

7 lines
90 B
Go

package tui
func ClearScreen() {
// Clear the terminal screen
print("\033[H\033[2J")
}