11 lines
146 B
Go
11 lines
146 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/laramiel/bazel-example-golang-remote/remote"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("Hello", remote.World())
|
|
}
|