@@ -24,3 +24,4 @@ _testmain.go
*.test
*.prof
+/test
@@ -0,0 +1,9 @@
+
+build:
+ go build
+run: build
+ ./test
+clean:
+ rm -rf test
@@ -0,0 +1,7 @@
+package main
+import "fmt"
+func main() {
+ fmt.Println("Hello, world!")
+}