package main import ( "go/token" "fmt" ) func main() { fs := token.NewFileSet() f := fs.AddFile("example.go", fs.Base(), 100) fmt.Println(f.Name()) }In this example, we create a new file set using the `token.NewFileSet()` function. We then add a new file to the set using the `fs.AddFile()` function. Finally, we print the name of the file using the `f.Name()` function. This package is part of the standard library for Go programming language.