about summary refs log tree commit diff
path: root/overrides/buildGo/example/main.go
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-12-19T15·24+0000
committerVincent Ambo <tazjin@google.com>2019-12-19T15·24+0000
commite996141d2ea24da382b8702e974f2b3baa5a6135 (patch)
tree92801e051eeb8d1d88c61a97ae4da3fb7a226099 /overrides/buildGo/example/main.go
parent11865364acaa4b03124c6beb73f6b7a18776eae6 (diff)
parenta8fbdc52c2d7170bc8b144bef9d522bef9f0d815 (diff)
merge(buildGo): Integrate buildGo.nix into depot r/202
Diffstat (limited to 'overrides/buildGo/example/main.go')
-rw-r--r--overrides/buildGo/example/main.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/overrides/buildGo/example/main.go b/overrides/buildGo/example/main.go
new file mode 100644
index 0000000000..bbcedbff87
--- /dev/null
+++ b/overrides/buildGo/example/main.go
@@ -0,0 +1,25 @@
+// Copyright 2019 Google LLC.
+// SPDX-License-Identifier: Apache-2.0
+//
+// Package main provides a tiny example program for the Bazel-style
+// Nix build system for Go.
+
+package main
+
+import (
+	"example"
+	"exampleproto"
+	"fmt"
+)
+
+var Flag string = "unsuccessfully"
+
+func main() {
+	thing := exampleproto.Thing{
+		Id:          example.UUID(),
+		KindOfThing: "test thing",
+	}
+
+	fmt.Printf("The thing is a %s with ID %q\n", thing.Id, thing.KindOfThing)
+	fmt.Printf("The flag has been %s set\n", Flag)
+}