18 lines
161 B
Go
Executable File
18 lines
161 B
Go
Executable File
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(hello())
|
|
fmt.Println(hello())
|
|
fmt.Println(hello())
|
|
}
|
|
|
|
func hello() string {
|
|
return "Hello go"
|
|
}
|
|
|
|
|