WEEKS of Coding Down the Drain Ruined Me

Поділитися
Вставка
  • Опубліковано 11 січ 2025

КОМЕНТАРІ • 13

  • @chemicalvamp
    @chemicalvamp 18 днів тому +8

    This is why the last farmer had to be replaced, you can do it man. I have faith.

    • @KedrigernGaming
      @KedrigernGaming  18 днів тому +1

      Because he quit? Not surprised!
      Thanks for your faith in me!

  • @danser_theplayer01
    @danser_theplayer01 18 днів тому +4

    Ah yes, just like the Python language, they have replaced the entrie language 2 times since creating it, there's Python 1.x, 2.x and 3.x.....

  • @McSmurfy
    @McSmurfy 18 днів тому

    Now I was waiting for this and I absolutely love this reaction to the changes.

  • @chez2485
    @chez2485 18 днів тому +1

    Wow, that's a lot of important things for them to change out of nowhere -_-

    • @KedrigernGaming
      @KedrigernGaming  18 днів тому +1

      They should have made it to be the last puzzle - "Your code is now broken. Lolz, good luck"

  • @FoxSlyme
    @FoxSlyme 18 днів тому

    You did the unthinkable!

  • @realdragon
    @realdragon 18 днів тому +1

    Yeah backward compatibility isn't a big thing with python I noticed. Like changing form python2 to python3 also breaks existing programs, so I guess the game is accurate to how it works

    • @KedrigernGaming
      @KedrigernGaming  18 днів тому +1

      Oh damn! This game is getting more and more realistic!
      I have the added bonus of code reviews - getting yelled at in the comments. Surely next step is getting paid.

    • @FoxSlyme
      @FoxSlyme 18 днів тому +1

      @@KedrigernGaming Getting paid is a UA-cam feature

    • @NCubss
      @NCubss 15 днів тому

      Python and other stuff follow a version format like A.B.C, A is incremented when a change that breaks old code is made, B is incremented when a feature is added that doesn't affect old code, and C is incremented for bug fixes. Makes sense why Python 2 code is broken in Python 3, etc..