this post was submitted on 10 Sep 2023
65 points (93.3% liked)

Technology

68495 readers
3822 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
 

hi, i was interested if perl is still relevant in this day and age. Perl has been on the decline for a very long time now. Perl 6 (now named 'raku) not being backwards compatible with perl 5 code made the already small perl community even smaller by splitting it in half. A good example is lisp with it's thousands of different dialects.

Is it still worth using or is it bound to legacy software forever? Like cobol.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 5 points 2 years ago (1 children)

It has never been an issue for me in 20 years. If you move code, you cut a whole paragraph, paste, and indent appropriately.

[–] [email protected] -3 points 2 years ago (1 children)

If I move code in non-python code, I cut a whole paragraph, paste, and I'm done if that's all I wanted to do.

[–] [email protected] -1 points 2 years ago (1 children)

Your code won't be indented properly, same problem as Python unless you have a formatting tool in your setup.

[–] [email protected] 1 points 2 years ago* (last edited 2 years ago) (1 children)

It won't matter. It will still compile correctly every time, as opposed to python, and that's my point. Choice. Choice is the key here.

[–] [email protected] 1 points 2 years ago (1 children)

Python isn't (generally) compiled. Have you used python before?

[–] [email protected] 1 points 2 years ago

I know Python is interpreted, but regardless, my point still stands. Just replace compile with run correctly.