• @[email protected]
    link
    fedilink
    511 months ago

    That’s what I love about Rust: many problems that would turn into runtime errors in other languages aren’t possible with its type system and the compiler catches them.

  • @[email protected]
    link
    fedilink
    3
    edit-2
    11 months ago

    You get a bit numb to this when working on old code (10+ years), you know there’s plenty crash bugs and logic bugs in the code and you know you will introduce a few of them while fixing bugs and adding new features.

    The only thing that can give comfort is automated tests and plenty of them! Unit, integration and especially system level for old code.

    Good companies priotize this, and can refactor code without breaking too much, other companies learn to live with the bugs breathing down their necks.

  • palordrolap
    link
    fedilink
    111 months ago

    No syntax errors here, boss.

    // Mr. Incredible happy
    x += (new Date()).getSeconds()
    
    // Mr. Incredible despair
    x /= (new Date()).getSeconds()