mirror of
https://github.com/MADTeacher/go_basics.git
synced 2025-11-23 21:34:47 +02:00
15 lines
148 B
Go
15 lines
148 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
pathToFile := "test.txt"
|
|
err := os.Remove(pathToFile)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|