From 91b17a0b15cceb4c42a358861833a1688a84e544 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Sat, 13 Jun 2015 11:58:31 -0700 Subject: [PATCH] Add go test --- src/gotest/Tupfile | 4 ++++ src/gotest/main.go | 7 +++++++ 2 files changed, 11 insertions(+) create mode 100644 src/gotest/Tupfile create mode 100644 src/gotest/main.go diff --git a/src/gotest/Tupfile b/src/gotest/Tupfile new file mode 100644 index 0000000..7625638 --- /dev/null +++ b/src/gotest/Tupfile @@ -0,0 +1,4 @@ +include_rules +.gitignore + +: main.go |> !gccgo |> ../../bin/gotest diff --git a/src/gotest/main.go b/src/gotest/main.go new file mode 100644 index 0000000..f7b60bd --- /dev/null +++ b/src/gotest/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello, world!") +}