Perl vision gets sharper
Connecting state and local government leaders
Perl creator Larry Wall has ambitious plans for the next version of his language, but remains mum as ever on its release date.
PORTLAND, Ore.'Version 6 of the Perl will be the first truly extensible programming language, promised Perl creator Larry Wall during his annual "State of the Onion" speech at the O'Reilly Open Source Conference (OSCON), being held this week.
Other languages have claimed to be extensible, though they have all fallen short in one way or the other, Wall asserted. "No computer language has ever taken extensibility seriously. All languages fall into the one true syntax syndrome, and we want to escape that," he added.
For power users of this open source language, such extensibility could mean that they will be able to augment the language with instructions, syntax, expressions, operators and other features to meet their own needs. An office of the National Cancer Institute, for instance, could extend Perl to include features that could aid in medical research.
Initiated in 2000, version 6 of Perl is a total rewrite of this widely used programming language, one that has been called the 'duct tape of the Internet.'
Judging from Wall's presentation, Perl 6 could turn out to be one of the most permeable programming languages ever devised. Nothing in Perl 6 will be immutable. "Perl 6 has no core, no keywords, no built-in operators. Everything that looks like an operator is actually defined by some grammatical rule or by a macro or by something that is added in," Wall said.
The developers' hope is that individuals will use this extensibility and redesign Perl in new ways. "We do not know what language we want in 20 years, but we want it to be Perl," he said.
It should be noted that this ability customize will largely be hidden from those using the language for basic needs. "We're trying to keep Perl 6 so that you don't need to understand what the fancy things are doing until you need them," Wall said.
For those perhaps less than willing to alter the language itself, the standard edition of Perl 6 will also offer more traditional improvements to ease programming.
In a session held earlier in the week, Perl developer Damian Conway, along with Wall, offered a few late additions to the Perl 6 feature set, including some exciting developments in module management, and streamlining of regular expressions.
For instance, the naming scheme of new modules will include a placeholder to specify the version number of the module. This approach will allow multiple versions of a module to run simultaneously, Conway said. Also, from your program, you can designate which specific version of a module it should use.
Another new feature: Future versions of Perl 6 will be backward-compatible, at least back to version 6. A user can specify which version of Perl can run a particular Perl script. If the version of Perl being specified is older than the one being run, then the newer version will emulate the older version of Perl.
One of Perl's biggest strengths has always been its ability to work with regular expressions, the syntax used to match patterns of text. Some additional shortcuts have been added to simplify the creation of regex statements.
For instance, you can now include small functions within the expression. For instance, if you are looking for a long string of identical letters, but don't know how many, you can write the expression "z ** [get .max.rep()]," which will find the maximum number of serial z's, and then find such strings.
Another feature is the ability to find all of the unique abbreviations of a certain expression. Conway explained that some operating environments will allow you to abbreviate the names of programs or files, i.e. the name "executable," could be abbreviated as "exec," "execu," "execut," "executa," "executab," and "executabl."
Finding all the abbreviations for one word could be done in Perl 5, but "this is something that you can't easily do," Conway said. With Perl 6, a query like this "/exec
Other new features touted included a much more friendly set of error messages, as well a way to split up work into parallel so they may be executed simultaneously by multicore processors.
The developers, however, were less forthcoming with a final release date for the programming language. As in years past, Wall gave no indication of when Perl 6 would finally be released, noting that the language's volunteer designers do not make promises about the release date. He did say the project is making "steady progress."
In his presentation, Conway, noted that the vast majority of the changes now being committed are now either for documentation or to fix simple typos. One developer we spoke with proffered that this must surely mean that the official release of this volunteer-led effort is close at hand.
Wall relayed the now-familiar joke that Perl 6 would be out by Christmas. He just won't say which Christmas.
NEXT STORY: NASA software award winners announced