Tradeoff Between Types and Devspeed

It seems as if there is always a trade-off between predictability with types when writing code and the speed at which this code can be written. I'm writing about programming languages, as developer tools.

Think about Rust, OCaml, even typed-Python. One is easier to implement and one is more robust to bugs. You don't want to launch a software 100% free of bugs after it has become obsolete. At the same time, you also don't want to launch a software so premature that it is as reliable as the flip of a coin.

There are two kinds of software here that change which side of the trade-off you would rather be on:

My hypothesis is that when starting out, you want to build for speed. Once built, you want to focus on making it better. An approach that gives you bug-free software from the ground up will take more time from the beginning. Instead, the ideal approach would let you start loose and then make your software more and more robust as your company matures. No programming language factors this into its construction. Most companies will just rewrite at some point.

I guess you want the best of both worlds and the ability to move slowly from one edge to the other. I'm starting to appreciate Python for this.