RosettaCodeData/Task/Include-a-file/Go/include-a-file-1.go

14 lines
136 B
Go
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
// main.go
package main
import "fmt"
func hello() {
fmt.Println("Hello from main.go")
}
func main() {
hello()
hello2()
}