I think I may have implemented this incorrectly because the results do not make sense. I have a Go program that counts to 1000000000:
package main import (
I'm not familiar with go, but I'd guess that go version ignores the loop since the body of the loop does nothing. On the other hand, in the python version, you are incrementing x in the body of the loop so it's probably actually executing the loop.
x