mirror of
https://github.com/encounter/object-testfiles.git
synced 2026-07-10 12:18:40 -07:00
14 lines
126 B
Go
14 lines
126 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
var helloWorld = "Hello, World!"
|
|
|
|
func foo() {
|
|
fmt.Println(helloWorld)
|
|
}
|
|
|
|
func main() {
|
|
foo()
|
|
}
|