package main import ( "fmt" "os" ) func Rm(p string) error { fmt.Println("Remove: " + p) return os.Remove(p) }