Adding initial makefile and main.go

master
Frederick F. Kautz IV 10 years ago
parent e91caac870
commit 720ccbddee
  1. 2
      .gitignore
  2. 5
      Makefile
  3. 7
      main.go

2
.gitignore vendored

@ -0,0 +1,2 @@
.gvm_local
minios

@ -0,0 +1,5 @@
default:
go build
clean:
rm minios

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello World")
}
Loading…
Cancel
Save