8 lines
76 B
Go
8 lines
76 B
Go
package cmd
|
|
|
|
import "fmt"
|
|
|
|
func GoshClear() {
|
|
fmt.Print("\033[H\033[2J")
|
|
}
|