github.com/code-visible/golang@v0.0.0-20240214000051-0f9c587b0b32/testdata/singlefile/singlefile.go (about)

     1  package main
     2  
     3  import "fmt"
     4  
     5  func HelloWorld() {
     6  	fmt.Println("hello, world")
     7  }
     8  
     9  func main() {
    10  	HelloWorld()
    11  }