Hello,

Go Generate Vs Go Build!?!

guest@Base:~/Gits/go-hello$ ls
hello  hello.go
guest@Base:~/Gits/go-hello$ cat hello.go
package main

import "fmt"

func main() {
        fmt.Println("Hello, World")
}

guest@Base:~/Gits/go-hello$ go build hello.go
guest@Base:~/Gits/go-hello$ go generate hello.go
guest@Base:~/Gits/go-hello$ ./hello
Hello, World

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to