vote up 136 vote down star
128

There's been a cluster of Perl-hate on Stackoverflow lately, so I thought I'd bring my "Five things you hate about your favorite language" question to StackOverflow. Take your favorite language and tell me five things you hate about it. Those might be things that just annoy you, admitted design flaws, recognized performance problems, or any other category. You just have to hate it, and it has to be your favorite language.

Don't compare it to another language, and don't talk about languages that you already hate. Don't talk about the things you like in your favorite language. I just want to hear the things that you hate but tolerate so you can use all of the other stuff, and I want to hear it about the language you wished other people would use.

I ask this whenever someone tries to push their favorite language on me, and sometimes as an interview question. If someone can't find five things to hate about his favorite tool, he don't know it well enough to either advocate it or pull in the big dollars using it. He hasn't used it in enough different situations to fully explore it. He's advocating it as a culture or religion, which means that if I don't choose his favorite technology, I'm wrong.

I don't care that much which language you use. Don't want to use a particular language? Then don't. You go through due diligence to make an informed choice and still don't use it? Fine. Sometimes the right answer is "You have a strong programming team with good practices and a lot of experience in Bar. Changing to Foo would be stupid."


This is a good question for code reviews too. People who really know a codebase will have all sorts of suggestions for it, and those who don't know it so well have non-specific complaints. I ask things like "If you could start over on this project, what would you do differently?" In this fantasy land, users and programmers get to complain about anything and everything they don't like. "I want a better interface", "I want to separate the model from the view", "I'd use this module instead of this other one", "I'd rename this set of methods", or whatever they really don't like about the current situation. That's how I get a handle on how much a particular developer knows about the codebase. It's also a clue about how much of the programmer's ego is tied up in what he's telling me.

Hate isn't the only dimension of figuring out how much people know, but I've found it to be a pretty good one. The things that they hate also give me a clue how well they are thinking about the subject.

flag
2  
This is a really nice spin on the old "your favorite language" question. Good justification. – Tom Leys Nov 11 '08 at 23:03
2  
I find it interesting that despite SO having a large .NET audience, at the time of this writing there are 24 answers, only one of which (mine) is about .NET or a .NET language. I have no idea what this says about SO or .NET, but it's interesting... – Jon Skeet Nov 11 '08 at 23:40
6  
Btw I think every language deserves its own hate page in SO :) – utku_karatas Nov 14 '08 at 0:04
show 1 more comment

121 Answers

vote up 1 vote down

C is my favorite but it is also horrible.

  • It has the worst pre-processor ever. Why didn't they use something like m4?
  • The whole header vs source file model is broken. Pascal got it right with units.
  • It needs case ranges in the switch statement.
  • Unions and casts from void* break the type system. This makes garbage collectors impossible.
  • No nested functions. GNU C has this, but it should be standard.
  • No boundary checking for allocated memory. There are tools that discover this but they don't detect errors where a piece of code miscalculates an address and writes to an allocated region which isn't related at all. I hate the whole pointer arithmetic.
  • No bounds checking for arrays.
  • Too many issues regarding portability. Even wchar_t differs across platforms.
link|flag
show 1 more comment
vote up 1 vote down

R (R-Project for statistics)

  1. Terrible, terrible string support
  2. Surprisingly difficult for some simple descriptive tasks, like cross-tabulation
  3. Large data set manipulation is done in-memory.
link|flag
vote up 1 vote down

Emacs Lisp

  • There is not enough of a commercial market to be coding in elisp full time
  • GNU Emacs vs XEmacs incompatibilities
  • Nested functions in Scheme are neat, I wish elisp had the concept [1]
  • The do loop or some other facility for simply looping over a list is not standard (granted, you can now mapc with a lambda) [1]
  • There should be a shorthand for (function (lambda (...))) [1]

[1] Of course, one of the beautiful things about Lisp is that it's not hard to fix these things in your own code with a one-liner. Still it irks me that it's not built in.

Good question; I'm a bit embarrassed that I couldn't come up with better things to hate, but honestly, your honor, there is not much to hate.

link|flag
vote up 1 vote down

Python.

Although the weird way python deals with scope has been mentioned, the worst consequence of it, I feel, is that this is valid:

import random

def myFunction():

    if random.choice(True, False):
        myString = "blah blah blah"

    print myString

That is, inside the if block is the same scope as the rest of the function, meaning that variable declaration can occur inside condional branches, and be accessed outside of them. Most languages will either prevent you doing this, or at least offer you some kind of strict mode.

This function will sometimes succeed, and sometimes throw an exception. Although this is a contrived example, this could lead to some subtle problems.

link|flag
show 4 more comments
vote up 1 vote down

Python

  • slow
  • I finally got used to the print statement, and now there's this print function??? (py3k)
  • never got py2exe or cxFreeze working
  • not standardized (minor nitpicking)
  • recursion depth only 100 (iirc)
link|flag
vote up 1 vote down

D

  • we have in operator, but no !in operator?
  • dynamic array 'length' property - ya canna do

    array.length += 512;

  • no exit statement - as in python's sys.exit(), etc. Sure, you can call C's exit, but unflushed output don't get flushed
  • associative array literals + string literals suck

    string literals found as is inside an associative array literal are interpreted as static, thus this

    char[][char[]] hash = ["hello":"world","goodbye":"angels"];

    doesn't work without some extra casting due to different length string literals despite
    a. I didn't ask it to be interpreted as static arrays
    b. static arrays aren't allowed in associative arrays anyways

  • cyclic dependencies disallowed (want to port that java lib? Have fun redesigning the class hierarchy)

Someone check me on these; not sure if they are all still relevant.

link|flag
vote up 1 vote down

I'm going out on a limb since I can't really use it full time, but I'll try anyway!

Perl 6

  1. func("frew") != func ("frew")
    • It annoys me, but there is good reason for it. In Perl 5 print (5 + 6) * 10 still gets me every now and then
  2. It may be easier to parse than Perl 5 in a lot of places, but it still kills my editor sometimes
  3. It still has a lot of the line noise Perl 5 which scares a lot of people. That means it's harder to get them excited etc.
  4. There are no libraries yet.
    • This will be a non issue if Perl 6 does indeed end up supporting Perl 5, but that may be a burden not worth bearing.
  5. There's no REPL, or what rubyists would call irb.
    • A solid interactive Perl 6 with tab completion, color coding, etc, would make using and learning it so much nicer.
  6. Currently the documentation is basically the English spec. Not exactly an easy read.
  7. I know it's a stupid cliche, but it's not out yet!
    • (I am allowed to complain because I am helping :-P)

The first three are the language; the rest aren't really the language itself but the fact that it's not out yet.

link|flag
1  
Only two has anything to do with the language. The rest are about the tools, and those things change. So, only three more to go. :) – brian d foy Feb 23 at 18:56
vote up 1 vote down

I can add another one for Python:

Given a list l = [l1, l2, ..., ln], then repr(l) = [repr(l1), repr(l2), ..., repr(ln)], but str(l) != [str(l1), str(l2), ..., str(ln)] (str(l) = repr(l)). This was decided because there could be obscure entries in the list like l = ["foo], [bar,", "],["] and str(l) would return "[foo], [bar, ], []" which "could confuse users". However, this makes str impossible to use for just dumping data, since list kills the "just dump data in a readable format". Augh!

link|flag
vote up 1 vote down

Oracle SQL

  1. The DUAL table.

  2. Can't GROUP BY an alias.

  3. I can never remember the syntax for analytic functions and so I forget/am too lazy to use them.

  4. Lack of combined LIKE and IN conditional operator. (After 10g there's a REGEX_LIKE operator that could do the trick, though.)

  5. Awkward concatenation syntax.

SQL isn't really my favorite language, but it's one of the top three I use everyday. There are probably more items, but these are the ones at the top of my mind.

I have a whole slew of problems with SQL*PLUS. I wrote a Perl replacement that does what I'd like from the command line and I use sql.el in Emacs for interactive SQL sessions. These tools help me work around my SQL*PLUS issues.


Speaking of which:

Perl

  1. "Only perl can parse Perl." (But this is mostly an issue in syntax highlighting, which I don't prefer to use much anymore for any language.)

  2. I'm sometimes surprised by "the simple (but occasionally surprising) rule...: It looks like a function, therefore it is function, and precedence doesn't matter." (From perlfunc(1))

  3. Dereferencing complex data structures can be confusing at times. I can't decide if this is a true flaw in Perl or just a consequence of having really powerful data structure facilities. Either way, I can normally get it right by taking a few minutes to think about what I'm doing.

  4. No option to cause system calls to raise their errors like the DBI module. (Thanks to brian d foy, I now know the autodie module on CPAN does this, but I'd like it built-in.)

  5. Warnings and strictures not enabled by default in scripts. (The -e option would turn them off for command line use.)

Again, there are bound to be more things, but these are issues I've noticed recently. I'd add the need for =over and =back and the quirky L<...> syntax in POD, but maybe that ought to be a separate list.


Now for the trifecta:

KornShell

  1. Sourcing a file with arguments replaces the values of the parent script's arguments. (Executing . file arg1 puts arg1 in $1.)

  2. ksh is not an ideal interactive shell and defaults to vi key-bindings, rather than emacs. (My solution is to use bash for interactive shells.)

  3. Common utilities (such as grep) are implemented differently across different platforms thereby preventing perfect portability. Some useful commands need to be installed on some platforms and are part of the OS core on others.

  4. The syntax for conditionals is overly heavy. (if [ ... ]; then ... fi)

  5. Although it is Turing Complete, you are eventually going to want to move up to a more expressive language like Perl.

One solution for #4 is to get used to short circuit evaluation:

[ ... ] && ...
link|flag
1  
For 4) in Perl, the pragma is autodie. – brian d foy Feb 19 at 21:27
1  
For Perl: PPI can parse Perl. 'Fatal' and 'autodie' are both core modules, you don't need to install them from CPAN. "use strict" will be enabled by default in 5.12. – Alexandr Ciornii Nov 18 at 20:39
show 1 more comment
vote up 1 vote down

C

  • It's so flexible and powerful that it's really easy to write really awful, or downright dangerous code (or, if you prefer, "with great power comes great responsibility").
  • '=' for assignment, and '==' for equality; easy to confuse in 'if' statements.
  • The implementation of a number of fundamental parts of the language are compiler-dependent; e.g. the size of the basic types, order of bits in bitfields, padding and byte order in unions.
  • Bitfields aren't parameterisable (i.e. you can array of ints, but you can't have an array of bits).
  • String handling could be improved.
link|flag
vote up 1 vote down

Python:

1) It's a scripting language and not a fully compiled one (I'd prefer to be able to compile binaries—I don't care about bytecode). This is very annoying if I have to use very many libraries (i.e. everyone who uses my program has to install all the libraries, and this basically means no normal people will be able to, or have the patience to, properly set it up—unless I do a ton of work that should be unnecessary). I know ways to make binaries, but they don't always work, and I'm guessing they bundle the interpreter in the binaries anyhow (and I don't want that). Now, if I could get a bytecode compiler that would include copies of all the files that I imported (and only those) to be placed in my program's folder, that might be a suitable compromise (then no one would have to download extra libraries and such). It would also be nice if the compiled python files could be compressed into a single file with one specified as the file to run the program before this is done.

2) It seems a bit buggy at times; there have been a few times when code that was supposed to work simply did not (there were no programmer errors), particularly code relating to such as "from moduleX import *", and other import-related issues, as well as some issues pertaining to global and local variables.

3) Maximum recursion depth could be higher. There has been at least one time when I felt that I needed it to go higher.

4) No switch statement (let alone one that allows for numbers, strings and ranges)

5) The newer Python versions seem to be doing away with a lot of useful string operations, and they don't seem to have simple documentation on how to do the same things without them.

6) Forced automatic garbage collection (I'd like to be able to do it manually, although not necessarily forced to do so).

7) No pre-made Timer class without the use of a GUI (well, there might be one, but after all the searching I've done, it's sure not convenient to find! I actually did find something, but it didn't work at all when I tried it.) By a timer, I mean the sort that will execute a specified function every x seconds, with the ability to turn it off when desired, etc.

8) People in the community who give examples rarely tell what modules they imported, and how they imported them.

9) There's not a lot of support for integration with Lua.

10) There doesn't seem to be a way to add an extra function to a particular instance of a class (and not the entire class at large), unless you dynamically add an object variable to that class with the object having the needed function (but still, you have to make another class just for that).

link|flag
vote up 1 vote down

1 - indentation

2 - indentation

3 - indentation

4 - indentation

5 - indentation

I'll let you guess the language. :-)

link|flag
3  
FORTRAN! I want my eight columns back! – brian d foy Jun 5 at 17:16
vote up 1 vote down

VBA (because you thought your language was bad)

  1. Whitespace inside a line is rigidly enforced.
  2. Statements just end, and require a " _" to break to the next line, but not every line can be broken.
  3. No ++,--,+=,-= statements. Seriously?
  4. Arrays can begin at any index, not just 0.
  5. Some types (i.e.: fixed-point "Decimal" value) must be subtypes of Variant, and aren't available as their own type.
  6. != and <>.
  7. "=" is used as both comparator and assigning, instead of splitting into "=" and "==".
  8. "Option Explicit".
  9. UI hasn't been updated since 2000.
  10. Office2k7 didn't upgrade to VB.NET
  11. Most object models are non-sensical and overly verbose.
link|flag
vote up 1 vote down

REBOL

REBOL is among my favorite languages. I can't say that I have a favorite, though Haskell ranks pretty high as well.

  1. Its odd syntax scares off many developers before they even give it a try.

    use [email rules url] [
    
    
    
    ; A small DSL that sends email to people about URLs.
    rules: [
        some [
            into [
                set email email!
                set url url!
                (send/subject email url reform [ "Check Out" url ])
            ]
        ]
    ]
    
    
    ; Global context
    notify: func [ [catch] dsl [block!] ] [
        unless parse dsl rules [
            throw make error! "You screwed up somehow."
        ]
    ]
    

    ]

    notify [ [ a@b.com http://www.google.com ] [ b@c.com http://www.yahoo.com ] ]

  2. Recursive dialects are very easy to validate with PARSE but very difficult to evaluate. (Stacks can be helpful here.)

  3. REBOL has very poor integration with many popular technologies, particularly XML. I suspect this is partly arrogance, because the REBOL BLOCK! datatype can do almost everything XML can do. However, the real world has XML in it.
  4. No Unicode.
  5. Thanks to AltMe, REBOL's user community is very insular. I can understand why they want to use AltMe. It's written in REBOL and shows off its strengths. Unfortunately it also puts them off on their own little island.

The upcoming REBOL 3 will hopefully fix many of these issues, except for the last one.

link|flag
vote up 1 vote down

First post, so take it easy on me :) ... Awesome community site, btw!

I tried reading all other C# replies just so mine doesn't overlap

C# ... In no particular order:

1) No fallthrough for cases in switch statements. And if there is no fallthrough ... why does one have to explicitly type break; anyway? It's just retarded and confusing since it implies the ability to not have the break;!!!

2) Can't declare a variable with the same name in a child scope, but you can declare a variable by the same name as a class variable? Either allow both or disallow both. Otherwise, it doesn't make sense.

3) No optional/default parameters in functions

4) Exceptions in finally{} should be implicitly caught for every line. Or at least, just the NullReferenceException exception. For instance, after accessing a db, one should always clean up. So, the finally block should look something like this:

finally
{
  if(par1 != null)
    par1.Dispose();
  if(comm != null)
    comm.Dispose();
  if(conn != null)
    conn.Dispose();
}

It would be so much cleaner if it could be written as:

finally
{
    par1.Dispose();
    comm.Dispose();
    conn.Dispose();
}

But, no ... you have to check if you are accessing a null object, otherwise it may throw a NullReferenceException from the finally block .. and who really needs exceptions in the finally block anyway?

5) Generics: you can specify new() to be able to instantiate your generic objects, but that object needs to have a default constructor. Why can't you specify a signature instead so one doesn't need to create empty constructors if it doesn't already have them and just use the constructors it does have.

link|flag
show 1 more comment
vote up 1 vote down

Haskell.

  1. The Prelude is imported by default.
  2. The scope of type classes is universal.
  3. Modules are not first-class.
  4. Types cannot depend on values.
  5. Monad does not unify with Functor.
link|flag
vote up 1 vote down

Python:

I am still a moderate user for python, so my complaints might just well be lock of knowledge or mis-usage. Comments are welcome. I do love this language.

  1. Poor thread support and GIL. If you'd like to take use of multicore platform, most of the python programmers would probably recommend multiprocessing or some sort, don't use threading. It wouldn't give you the performance you are expecting.
  2. property only for instance variable. _class_var = property(classmethod(some_method)) just wouldn't work. How can I get a property wrapped class variable?
  3. no access control. All access controls are syntax mangling. Like private is __private, protect is _protected, etc... And hope that everyone programs python follows the naming convention. Come on, we can do better than that.
  4. I agree the python philosophy of being simple and clear syntax but some simple and clear syntax not being supported seems lock of good judgement, in my opinion. Such as, a++, ++a, a-- and --a, self-de/increment, what's wrong with those? foo = (a > b ? a : b) unary operation, what's wrong with those? (I know py2.6 has something similar introduced, but given the massive support of almost every other language for those simple syntax, why reinventing the wheel? why not just follow the best practice? Shouldn't a good thing just keep in its good "form"?)
  5. Program to interface. Python has no interface or abstract class concept (py3k has something called abc), everything is concrete. Providing an "interface" or "abstract" keyword to build class skeleton and guard class inheritance and extension wouldn't be a bad idea I think. It helps on top-down design. Currently, I just have to fill the each of methods with NotImplementedError, quite a tedious job.
  6. I have to add this. version less than 3.x has str and unicode types. This is a true nightmare. It makes ascii and non-ascii/unicode mixing most likely to fail (bad, bad)

I saw people complains about speed. I don't get that. Its an interpret language, code not compile to machine code until runtime, that's just the nature of it. You can't compare speed from an interpret language to a compiled one. As far as I can see, among the interpret/scripting languages, python isn't slow.

link|flag
show 2 more comments
vote up 1 vote down

Haskell:

  • Space leaks - a price paid for laziness by default - maybe too high a price?
  • Even pure functions like head and tail can invoke error and boot you out to IO.
  • fail from Monad - bring back MonadZero.
  • The Num class - (+) should have been in AdditiveGroup or similar.
  • That Monad is not an Applicative.
link|flag
vote up 1 vote down

C++ lack of good refactoring tools, lack of checked exceptions

Java lack of templates, lack of const keyword

link|flag
1  
Not true. "final" for methods and classes has different meaning than "final" for variables. For variables, "final" is not the same as "const" in C++, see stackoverflow.com/questions/502430/… There is simply no "const correctness" in Java, you can declare an array as "final" and modify its contents. – quant_dev Sep 10 at 6:52
show 1 more comment
vote up 1 vote down

I feel that a favorite language is impossible to choose. Dynamic typing and static typing can't quite be compared, so I'll just list which of which I use

C++:

  • Template metaprogramming syntax is ugly. An implicit ::value would make it much more concise
  • ->. Why can't the compiler figure out that I'm doing a ptr.thing and just do -> for me?
  • I hate whitespace. So the whole vector<vector<int>> has to be vector<vector<int> > makes me get the jitters and then I can't focus whenever I see that line of code and I end up trying to figure out a way to use int[][] or something
  • Macros. I personally love the concept of macros. But with C++, I that the system is a hack
  • I'm a hater of ;

Python:

  • Strings being immutable. Makes it so I can't just do string[4]="b"
  • Lists being implicitly copied by reference. Which leaks into [[0]width]height issues
  • Lack of tail recursion (I had to rig IDLE to not spit out 1000s of error messages whenever I mistyped a recursive function)
  • Dictionaries keys not accepting lists/dicts
  • Lack of deep scopes. When I do a list comprehension, I don't want the variable in it to affect the outer scope
link|flag
show 4 more comments
vote up 1 vote down

PHP

  • Almost every standard function is in the global scope
  • Inconsistent function argument order
  • Inconsistent function naming
  • Case insensitive functions
  • Script may behave differently depending on the config files
  • Terrible error catching
  • Being able to use undefined variables
  • In some cases having to assign a result to a variable before it can be used in a function

And far more subjectively:

  • Dynamic Typing
link|flag
vote up 1 vote down

Common Lisp

  • Lack of standard libraries for more modern features (sockets, threads, ...)
  • Could use a standardized UI that maps to the native windowing system
  • Scheme's ability to assign a lambda expression to a variable and use the variable directly as a function call looks neater that APPLY for FUNCALL. Side effect of having multiple name spaces, I guess
  • Standardized source-level packaging system for libraries so that they could be easily used from multiple implementations

I wonder what a strongly-typed lisp would be like

link|flag
vote up 1 vote down

C#

1) Lack of practical ability to write generics for value types. For example, any idiot (well most idiots) can write a routine that calculates the standard deviation of a list of int, float, double, etc in C++, it is straightforward to write, easy to read and performs as fast non-generic code. I think if you can write something in C# that is close to hitting any one of these 3 without being ridiculous on the other 2, you are a really great programmer.

2) Covariance and contra variance, although this is being added to 4.

3) Extremely poor documentation of LINQ (alright, not really part of the language).

4) Trying to use foreach/iterators when I want to do the same thing every time except something slightly different the last time (such as concatate a bunch of strings with commas between them and the word and between the last two). If I write it with an IEnumerable, it is hard to write and read, and with a for (int i=0 i < ...) it isn't much better and it is less efficient.

5) I know I am going to get complaints about this, but lack of checked exceptions. This does not need to be implemented the way it is in java (The framework developers do make some very good points on why they didn't do this), but I would be happy with a compiler warning users who don't like checked exceptions can turn off.

link|flag
vote up 1 vote down

I can't believe it, my favorite Python pet peeves still haven't been mentioned:

  1. (Prior to 3.x) Relative imports look like absolute imports.

    import foo
    

    Does this import foo from the directory you're standing in or from the sys.path?

  2. Zipped eggs, leading to a sys.path full of shite. Zipped eggs means you can't use grep and find (to among other things debug problem 1)! Fortunately, there's pip. Use pip.
  3. Some of the included batteries are unpythonic. It grates to use them.
  4. Might be the fault of distro's and packagers, but still: sourcefile-encoding set to fscking ASCII on install/compile. WTF? Means I have to put the "# coding: UTF-8"-stuff in every single .py I ever make.

Py3k fixes several of my other pet peeves, by for instance insisting that strings are unicode and that 8-bit-stuff are treated differently...

link|flag
vote up 1 vote down

JQuery

  1. lack of compatibility across browsers (hey it looks great...try it in IE6...oops)
  2. falling into the trap of using too much jquery in especially dynamic sites (works great for static sites - dynamic sites start becoming very complex to pull off).
  3. heaby reliance on getting your css right (i know this isn't a big thing...but it's a pet peeve - i suck at ui :))
  4. never really being sure of what you're doing wrong (and you're usually getting something wrong).
  5. spending hours on the jquery site trying to get the best plugin :P
link|flag
vote up 1 vote down

C#

5. The null-coalescing operator

The ?? operator allows you to write:

x = y ?? z;

instead of:

x = (y == null) ? y : z;

I like this operator, but I want another one:

x = y ??? y.foo() : z.foo();

instead of

x = (y == null) ? y.foo() : z.foo();

I use this kind of thing all the time, and I find it annoying to type the == null part.


4. Equals should have better support

I have having to start every Equals(object obj) method with: MyClass other = obj as MyClass; if (other == null) return false;

You should only have to write:

public override bool Equals(MyClass other) {...}

And the language should take care of providing the Equals(object obj) method.
NOTE: other should be guaranteed to not be null.


3. Cannot use ternary operator with different types

This doesn't compile, and I think it should!

string foo = "hello";
int bar = 4;
object baz = foo == null ? foo : bar;


2. Lack of namespace private

I like the internal protection, but I wish there was a protection which would only allow access from within the same exact namespace. This would be nice to better control access in large class libraries.


1. No multiple inheritance

I really only use implementation (class) inheritance for default implementations of an interface, but there are plenty of times when I want to do just that.

link|flag
vote up 0 vote down

Python: Array part-selection doesn't give you what you asked for.

a[1] gives you one element
a[1:2] gives you one element, not [ a[1], a[2] ]
a[1:3] gives 2 elements

I hate that, but maybe that's just because I mostly work in Verilog.

link|flag
show 8 more comments
vote up 0 vote down

its it's

your you're

their there they're

/tongue in cheek

link|flag
vote up 0 vote down

Haskell (with all GHC extensions, not just the base Haskell'98 spec).

There's exactly one thing that I hate about it: it's not mainstream.

link|flag
vote up 0 vote down

Perl

I dislike anything in Perl which makes me either type or think about things which I don't want to think about.

1. use

 use Module;
 my $var = Module->new (options);

Here "use" doesn't serve any purpose. Modules should be pulled in by the compiler as required. I don't want to type use.

2. Idiosyncrasies in libraries

Every module on CPAN seems to have its own idiosynchratic calling conventions and options. For every new module I use I have to pore over difficult-to-read documentation to find out calling conventions - do I pass a reference to a hash, a list, or what? Do I get back a list or a reference or what? Does it return an error or does it die or what? Even the core modules are like this. In many cases it is necessary to resort to trial and error. I want some kind of convention or best practice so I don't have to work so hard figuring these things out.

3. Subroutines don't have parameters

For a language like Perl which is so concise, the fact that I have to keep writing

 my ($x, $y, $z) = @_;

at the top of every subroutine is annoying. I want to have

sub a ($x, $y, $z)

4. Too many choices of modules

There are far too many similar modules doing almost the same thing. The CPAN cats need to be herded, and somebody should put some of the more fruity modules in the "fruit cellar". I'm not going to name names.

5. Shebang and other blah

Shebang is annoying. Also all the use warnings; blah should have been switched on by default by now. It's time to be rid of Perl 4/PHP style programming.

Bonus corner

6. Hyphens

I would also like Perl to be able to handle hyphens. I don't like typing underscores, so I would rather Perl identifiers could contain -, as in "my-module.pm". I can't see what would be lost by not allowing subtraction of barewords.

7. If statements

The "Go" method of if statements makes much more sense than Perl's does. I would rather have "Go"-like ifs and fors:

for i := 0; i < flag.NArg(); i++ {
    if i > 0 { s += " " }
    s += flag.Arg(i)
}

So much more sensible than having the two syntaxes

 for/if (<something>) {

 }

and

 ... for/if <something>;

and saves typing.

8. Auto-document

I want Perl to auto-document itself as I type so I don't have to search CPAN. I want the documentation to be available by clicking on the function names in my editor.

9. The "Perl community"

I would be most grateful if a gigantic hole opened and swallowed up a lot of members of the so-called "Perl community", never to be seen again.

link|flag
1  
I think I read that Perl 5.12 will have strict on by default. I also know that deprecated warnings will be on by default. – Brad Gilbert Nov 9 at 4:58
1  
Shebang is a Unix requirement. For sub parameters use "signatures.pm". – Alexandr Ciornii Nov 18 at 20:42
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.