golang-exercises/golangr/goroutines/clear.go

8 lines
73 B
Go

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