package main
import (
"fmt"
"strings"
)
func main() {
str := "Go is a statically typed, compiled high-level programming language"
str = strings.ReplaceAll(str, "a", "")
fmt.Println(str)
}
/*
run:
Go is stticlly typed, compiled high-level progrmming lnguge
*/