▲ | jamiejquinn 6 days ago | |||||||
Oh did I get frustrated seeing "to make incremental compilation simpler to implement" in the latest 0.15.1 release notes... I have no doubt incremental compilation will make many large projects easier to compile, and perhaps it really is the future of all compiled languages, but you're right, it's being wielded as a janky dismissal of many good ideas. | ||||||||
▲ | kingstnap 6 days ago | parent [-] | |||||||
Maybe maybe not. Working with / testing systems that have huge input spaces is difficult. You have to stamp out lots of edge cases because the boundary of the space is huge. Working with systems that both have huge input spaces but also have internal state is exponentially worse. You basically have edge cases to the power of edge cases to deal with. Simultaneously, it's not always faster / easier to manage deltas in programming. As an example, consider the case of sorting a 1 million element list. How much difference is there between starting from completely scrambled vs. I instead told you it's mostly sorted, but only 1% of elements were out of place. Its definitely not 99% easier let me tell you that. | ||||||||
|