diff --git a/doc/go_faq.html b/doc/go_faq.html index e06cab14cb6..0b770377bbe 100644 --- a/doc/go_faq.html +++ b/doc/go_faq.html @@ -1375,9 +1375,11 @@ type checks, reflection, and even panic-time stack traces.
-A trivial C "hello, world" program compiled and linked statically using gcc
-on Linux is around 750 kB. An equivalent Go program using fmt.Printf
-is around 1.3 MB, but
+A simple C "hello, world" program compiled and linked statically using gcc
+on Linux is around 750 kB,
+including an implementation of printf
.
+An equivalent Go program using fmt.Printf
+is around 1.2 MB, but
that includes more powerful run-time support.