14 lines
136 B
Go
14 lines
136 B
Go
|
|
// main.go
|
||
|
|
package main
|
||
|
|
|
||
|
|
import "fmt"
|
||
|
|
|
||
|
|
func hello() {
|
||
|
|
fmt.Println("Hello from main.go")
|
||
|
|
}
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
hello()
|
||
|
|
hello2()
|
||
|
|
}
|