bazel_test/hello_world/hello_world.go
2024-11-27 19:43:35 +00:00

20 lines
282 B
Go

package hello_world
import (
"runtime"
"golang.org/x/example/hello/reverse"
)
func helloWorld() string {
return "hello world"
}
func helloWorldRev() string {
return (reverse.String("hello world"))
}
func getGoVersion() string {
return (runtime.Version())
}