9 lines
97 B
Go
9 lines
97 B
Go
|
|
// main2.go
|
||
|
|
package main
|
||
|
|
|
||
|
|
import "fmt"
|
||
|
|
|
||
|
|
func hello2() {
|
||
|
|
fmt.Println("Hello from main2.go")
|
||
|
|
}
|