Files
lotr/hello.go
Laramie Leavitt dad6f57d6d Update WORKSPACE / BUILD to work with bazel at HEAD.
Uses external rules_go github repository.
2016-03-21 16:56:03 -07:00

14 lines
173 B
Go

package main
import (
"fmt"
"github.com/laramiel/bazel-example-golang/local/local"
)
func main() {
fmt.Println("Hello World")
fmt.Println("Hello ", local.World())
}