I recently installed go and was trying out hello world example.
package main
import "fmt"
func main() {
fmt.Printf("hello, world\n")
}
$ go build hello.go
returns hello binary file which is 1.2Mb size. Thats comparatively huge for just a hello world program. Any particular reason on why is the file size large ? Is it because of importing "fmt" ?