|
|
|
|
|
by mbivert
707 days ago
|
|
I've used Perl extensively for a few years professionally. For prototyping, say text-processing stuff, I reach out for awk/sh, which are usually sufficient. If I need more than a prototype, I reach out for Go. I have two major complains with Perl: - it's more difficult to deploy (Go can be cross-compiled to a single binary which can then be scp(1)'d around, solid stdlib, no need to deal with dependencies on the remote, or modules split in multiple files); - lack of static typing. You can get away with writing additional tests, but at the end of the day, that's just more work. So despite being quite confortable with a fair subset of Perl, I (genuinely) can't think of a reason as to why I'd want to use it. |
|