Add go test

This commit is contained in:
Christine Dodrill 2015-06-13 11:58:31 -07:00
parent d84158f627
commit 91b17a0b15
2 changed files with 11 additions and 0 deletions

4
src/gotest/Tupfile Normal file
View File

@ -0,0 +1,4 @@
include_rules
.gitignore
: main.go |> !gccgo |> ../../bin/gotest

7
src/gotest/main.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, world!")
}