As we can see from The Computer Language Benchmarks Game:
How it can be bearing in mind that go compiler produces native code for execution?
Immature compilers for go? Or there is some intrinsic problem with the go language?
EDIT:
Most answers deny intrinsic slowness of Go languge, the problem resides in unmature compilers.
Therefore I've made some own tests to calculate Fibonacci numbers: Iterative algorithm runs in Go (freebsd,6g) with the same
speed as in C (with O3 option). The dull recursive one runs in Go 2 times
slower then in C (with -O3 option; with -O0 - the same). But I haven't seen 10x fall as in the Benchmarks Game.
Thanks a lot for answers!