the go runtime (bare, nothing else) is about 1.1MB now. the "fmt" package brings almost a MB of dependencies including 800 or so unicode-related functions (names/symbols), reflection, etc. the math package brings almost nothing: 11 symbols.
-------------------------8<---------------------------- $ cat t.go package main func main() { } $ go build t.go && ls -lh t -rwxr-xr-x 1 a s 1.1M 21 Apr 20:35 t $ cat > t.go package main import "fmt" func main() { fmt.Println("test") } $ go build t.go && ls -lh t -rwxr-xr-x 1 a s 2.0M 21 Apr 20:36 t $ cat > t.go package main import ("fmt"; "math") func main() { fmt.Printf("\n %8.3f", math.Sin(1.2) ) } $ go build t.go && ls -lh t -rwxr-xr-x 1 a s 2.0M 21 Apr 20:38 t ------------------------>8-------------------------- -- 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.