Hover Text:

I wrote 20 short programs in Python yesterday. It was wonderful. Perl, I’m leaving you.

Transcript

[A Cueball-like friend is talking to Cueball, who is floating in the sky.]
Friend: You’re flying! How?
Cueball: Python!
Cueball: I learned it last night! Everything is so simple!
Cueball: Hello world is just print “Hello, World!”
Friend: I dunno… Dynamic typing? Whitespace?
Cueball: Come join us! Programming is fun again! It’s a whole new world up here!
Friend: But how are you flying?
Cueball: I just typed ‘import antigravity’
Friend: That’s it?
Cueball: …I also sampled everything in the medicine cabinet for comparison.
Cueball: But I think this is the python.

  • _cnt0@sh.itjust.works
    link
    fedilink
    arrow-up
    13
    arrow-down
    2
    ·
    5 months ago

    That will cause a compilation error 99.999% of the time and point you to the exact location where the problem is.

    • gamermanh@lemmy.dbzer0.com
      link
      fedilink
      English
      arrow-up
      3
      ·
      5 months ago

      Back when I regularly used Java for Minecraft mods n shit id get shit like

      missing expected ; at line 68

      Then I’d go to line 68 in the editor and it and the 5 on either side of it are allllllll blank. Wonderfully helpful!

    • elvith@feddit.de
      link
      fedilink
      arrow-up
      2
      arrow-down
      4
      ·
      5 months ago

      Well, which of these lines causes a compilation error?

      String foo = "Nothing";
      foo += "to see";
      foo += "here";
      
      Spoiler

      The last one. It’s not a semicolon but a Greek question mark

      • _cnt0@sh.itjust.works
        link
        fedilink
        arrow-up
        6
        ·
        edit-2
        5 months ago
        Compilation error (line 3, col 18): ; expected
        Compilation error (line 3, col 18): Unexpected character ';'
        

        edit: fuck that formatting