40
linuxxx
6y

The amount of "echo {number};" thingies I have in my code right now is too damn high, please don't kill me 😅

Comments
  • 4
    Haha I guess we all have been there
  • 2
    Don't be so defensive, you gotta stand up for your choices
  • 5
    Couldn't figure something out, figured out the error, now still have to somehow fix it 😅 @Condor
  • 5
    echo "asdf";
    echo "dasd";
    echo "sad41566";
    ...
    😅 I know your feeling, I have like 60 of these in my code right now 😅
  • 4
  • 6
    When I do Java I always create this function:
    public static void a(String s) { System.out.println(s); }
    so I can debug using a("adsdasd"); instead of writing System.out.println("asdasd"); every time 😂 😂 Same when I do C# 😅
  • 4
    Debugging is for kids :-p... I used to do that and once accidentally kept same numbers in multiple locations. Ohhh man, I was really frustrated till I figured it out.
Add Comment