GoLSh/cmd/clear.go
2025-06-24 16:02:09 -05:00

8 lines
76 B
Go

package cmd
import "fmt"
func GoshClear() {
fmt.Print("\033[H\033[2J")
}