This Fortnight in Perl 6, March 22 - April 3, 2005

Perl 6 Language

ceil and floor

Ingo Blechschmidt wondered if ceil and floor would be in the core. Warnock applies, although Unicode operators would let me define circumfix \lfloor \rfloor (although I only know how to make those symbols in TeX.). Hmmm…using TeX to write Perl 6 code is an interesting idea. At least then I could figure out how to make all the special symbols. Maybe someone should make a package for that.

s/// object?

Stevan Little wanted to know if s/// could return some sort of magic object to poke or prod. Larry said “no”.

Markup-Like Features

Michele Dondi asked if Perl 6 would have markup-like features in it. Luke Palmer asked for a more full explanation of what he meant. Warnock applies.

The Many Moods of does

Thomas Sandlaß wondered if anyone would actually write S14 or if does ate up tie/bless, enumerating the many powers of does. Larry explained that does will probably have mutated bless and then explained the contexts under which does performs each of its powers.

Even More Moods of does

To follow up on his question about does, Thomas Sandlaß wondered about is, specifically whether it stubbed or initialized its variable. Larry explained that is would probably initialize its variable and explained how to use is Ref to stub but not initialize something.

Perl 5 -> Perl 6 Converter

Adam Kennedy dropped a line to the list about PPI 0.903, which could form a good base for a Perl 5 to Perl 6 converter. Larry explained that he is actually using PPD (the actual Perl parser) to construct such a tool. He also explained how he was going to do it. Actually, it’s a really cool approach for those of you who like elegant design approaches. You should check it out. I’ll give you a hint: it starts by writing a glorified version of cat.

p5 Library Compatibility?

Andrew Savige wondered if p6 would maintain the interface for most p5 libraries. chromatic almost died of fright from the suggestion. Juerd suggested a deprecated namespace for such things. Larry gave him a Ponie instead. Later, Larry thought that perhaps a special namespace for those libraries that could be automatically converted might be appropriate.

Follow-up

Importing Constants and Header Files

Song10 wondered if there was an easy way to import constants from a module and not have to specify their full scope in the includers file. Larry explained that p6 will have “policy” modules which would allow this. He then began to let his mind explore the possibility of allowing these modules to return a string to evaluate in the user’s scope. Then he realized how nasty textual inclusion was in C and C++, and figured that a hygienic policy would be better.

Giving Lists More Operators

Juerd constructed a table of string, integer, and list operators. He noticed that the list section had blank spots where string and integer both had items. He then suggested quite a few more operators to fill these blanks. This morphed into a discussion of code complexity and reading code.

String Pain

Chip wondered what exactly set str apart from Str and the impact this difference had on Unicode support. Larry and Rod Adams explained that str specifies a raw bytes view of strings and requires explicit casts between different Unicode levels.

xx on Coderefs

Luke Palmer wondered if the xx operator could include overloading to run a coderef repeatedly and slap the results together. Others liked it, but there was no word from on high.

Running Pugs

Adam Preble had some strange problems with Pugs’ make install target. Warnock applies.

Manipulating Many Dimensional Hashes

Zhuang Li wanted to know how to manipulate hashes of unknown dimension. Luke Palmer provided the answer.

Semantics of Currying

Yuval Kogman has been implementing currying in Pugs. As such, he has found some of the under-specified corner cases. Thus he, Larry, Luke Palmer, and Thomas Sandlaß delved into these mysteries.

Multi-paradigmatic Perl 6

Someone named Eddie posted a fairly long message to p6l on the Google Groups interface suggesting that Perl 6 support delegation and other programming paradigms. Sadly, no one told him that it already does both of those things, because nobody saw his email. Google Groups does not send messages back to the list.

NB for Pugs on Low Memory Machines

Adam Preble posted a helpful warning about installing Pugs on machines with less than 200 MB of memory. Unfortunately he also posted it to Google Groups. People should stop doing that. Is there some way to tell Google to prevent them from doing that?

PLEAC

Tim Bunce suggested that people could add programming examples to PLEAC for Perl 6. Of course they should run in Pugs if they are being released to the world at large.

Annotating Code with Documentation

Chip wants to be able to document his code by attaching documentation directly to it. This would allow for nifty introspective features. Larry pointed out that code will have access to the surrounding POD.

Typo in S03

Aaron Sherman pointed out a typo in S03. Luke Palmer explained that dev.perl.org did not mirror the svn tree just yet. Juerd found one too and received the same answer. This time, though, Robert Spier put in the necessary magic so that dev.perl.org would update from svn.perl.org.

Optimization Hints

Yuval Kogman noted that Perl 6 has some ability to provide lexically scoped hints and suggested a few more things that might be hintable. Larry opened the door for him to try to design such features.

S29 Update

Rod Adams’ efforts to update S29 continue to push a very large thread about things including numification of strings and various core operators.

String Positions

Aaron Sherman wanted a more OO way to look at the OS. Larry did not really agree but suggested that someone could create a proxy object which would reference all of those globals. Then a conversation about having units attached to numbers sprang up. That sounds like a good module to me.

modify and assign Operators

Andrew Savige wondered if there was a complete list of operators anywhere, because he could not find ~^= (string xor) documented anywhere. Larry explained that the assign should probably be a meta operator to allow for better extensibility

p5 -> p6 Guide

Adam Preble wondered if there was a basic p5 -> p6 guide. Unfortunately he posted to Google Groups.

$_.method vs $self.method

The debate about whether .method should mean $self.method or $_.method continued. $self is still winning.

Typo Problems

It seems that Juerd has typing problems. He wanted to know if he could form a support group. Apparently he can only if he uses vim.

Renaming Flattening and Slurp

Terrence Brannon wants to change the terms “flatten” and “slurp” to something else. Larry told him that this usage was unlikely to change.

How Read-Only is Read-Only?

Chip wondered how deep read-only-ness or is copy-itude went on arguments. The answer appears to be: shallow. This led to a very long discussion of how much type checking will actually occur.

pick on Non-Junctions

Ingo Blechschmidt wondered what pick would do on an array or a hash. Many folk explained that it would remove and return an item or pair from the container respectively. Larry commented that pick on a hash could be harder than it looks.

Built-in Multi Methods

Wolverian wondered if some of the common functions called on strings would actually be methods. Larry answered that they would more likely be multis to allow for easier extension.

Comparing Two References

Darren Duncan wanted to know if =:= was the correct operator for testing if two variables refer to the same object. Larry explained that it was. This led to a debate about how easily people can deal with chains of references in Perl 6.

Perl 6 Compiler

Pugs Test Failures

Will Coleda worriedly reported 115 failing subtests in Pugs. Stevan Little explained that this was normal for between releases and was really more of a TODO list than a problem.

Pugs Darcs Repo

Greg Buchholz noticed that the darcs repo for Pugs has trouble staying up to date. Tupshin Harper suggested using darcs whatsnew --look-for-adds --summary to find the offending files.

BEGIN {} Time

Autrijus wondered when BEGIN should run. Markus Laire posted a useful summary of when the various CAPITAL things should run. Larry confirmed Autrijus’ suspicion.

YAML Test Output

Nathan Gray wondered if he should change his tests log to YAML output. Stevan Little pointed him to Test::Harness::Straps, which can collect test output and transform it.

Semicolons in p6

Andrew Savige found some strange behavior with respect to statement separation in Pugs. He thought that perhaps semicolons had changed their status. They haven’t.

Ugly Dog Meets Ugly Bird

Pugs r2^10 can compile p6 to imc which Parrot can run. I think I speak for everyone when I say “Wow. Nice work, Autrijus.”.

String Interpolation and Various Special Variables

Andrew Savige noticed a couple of odd corner cases for string interpolation in Pugs. This led to a discussion of which special variables (like $!, $/, and $") will continue to exist.

Code Coverage Metadata

Paul Johnson posted a list of requirements he would like to see satisfied so that he can easily generate Perl 6 coverage reports. Warnock applies.

Pugs Release

As is the fashion, Pugs went through two minor releases during this two week period: 6.0.13 and 6.0.14.

Text Editor Support for Perl 6

Darren Duncan suggested that it might be a good idea for people to begin prepping their favorite text editors to handle Perl 6 syntax correctly. Why stop at syntax? I know I want to be able to type :perl6do in vim.

Makefile.PL

Darren Duncan noticed that most things in Pugs use Perl 6, while Makefile.PL was still Perl 5. He suggested writing the Makefile.PLs in various modules in Perl 6 also. He then began work on a Pugs::Makemaker module.

Work Begins

Pugs to Become a Perl 6 -> Parrot AST Compiler

Autrijus explained that he was planning on steering Pugs toward becoming a Perl 6 -> Parrot compiler which would interpret code (when Parrot is not available) by mapping imc to Haskell.

Pugs Re-org

Stevan Little suggested rearranging the Pugs repository a bit. The end result is that modules which don’t run in Pugs (yet) should go in modules/ while those which do should go in ext/.

YAPC::NA Pugs hack-a-thon

John Macdonald posted his plan for theYAPC::NA Pugs hack-a-thon. His description of the location makes me want to take time off work to go.

split Semantics

Stevan Little found a bug in Pugs’ split. Autrijus fixed it, but noted that he had not replicated the full, bizarre semantics of Perl 5 (which come from awk). Larry told him not to work too hard on it, as it would probably work in Perl 6 through a separate function.

Statement Modifiers

A bug in Pugs’ parsing led Autrijus to seek information from a higher authority. Larry explained the power of statement modifiers.

Parrot

Move Perl Tests Out of pmc/pmc.t

Steven Schubiger volunteered to reorganize pmc/*.t last time. He did it, and Leo applied the patches.

Areas of Focus

Chip, in a circumloquacious attempt to come up to speed, indirectly asked what design issues needed attention. Leo explained the CPS issues that bogged down Parrot of late.

Improving MinGW Docs

François Perrad provided a patch improving the documentation for building with MinGW. Leo applied part of it.

Moving pmc2c2.pl or pmc2c.pl

Matt Diephouse opened an RT ticket for cleaning up the file system (specifically pmc2c2?.pl).

The Learned Parrot

Christian Aperghis-Tramoni reported that he has had success using Parrot assembly as a teaching tool.

Performance and Parrot

Falcon posted a series of questions about Parrot in a fairly general sense. Unfortunately, because he posted it to Google Groups, Warnock applies.

First MMD call

Leo posted a first MMD call which uses an MMD PMC and a fair amount of hand-made calling conventions set up.

OpenBSD atan2 Trouble

Steve Peters noticed that atan2 on OpenBSD is not quite right.

API Change

Leo changed various packfile functions to take an Interp* argument. This does change the embedding API, but it had to be done.

pmc2c2.pl Cleanup

Leo pointed out that pmc2c2.pl was not functioning correctly on all platforms. He put out a call for interested parties. Matt Diephouse provided a patch to clean up the internals of pmc2c2.pl a bit. Leo applied it. Peter Sinnott returned a $ that got lost in the shuffle, and chromatic applied it. Matt went on to add better comments.

README.win32 Update

Klaas-Jan Stol provided an update to the README.win32 directions. Warnock applies.

SET_NON_ZERO_NULL

Chip wondered why Parrot had a SET_NON_ZERO_NULL macro and suggested removing it. The answer was, of course, speed. On architectures with a zero null, this can be a no-op allowing the use of calloc(). Otherwise it has to do something.

PMC Constants

Leo added support for .const things to imc. Unfortunately, the GC eats them so you can’t use it yet.

Garbage Collection and Hash Creation

Cory Spencer’s LISP implementation revealed a bug in the hash creation sequence. Leo fixed it.

MD5 Update

Nick Glencross provided an update to the MD5 library. Leo applied it.

Tcl Updates

Will Coleda has been updating Tcl. He moved the parser into a PMC. Then he tried to add octal and hex escapes only to discover missing transcodings. He also found missing hash functions, but Leo fixed that.

Logging IRC

Someone suggested that we start to log IRC. Chip suggested that this might not be cost effective as such logs are 99% dross and 1% value. He suggests instead that people paste the good part into emails for the list. I know that I, for one, would not volunteer to summarize IRC.

Segfault Generating config.fpmc

chromatic (as his Linux PPC is wont to do) found a bug in the build. He fixed it, and Leo applied the patch.

Lazy, Lazy Steve

Leo added a first implementation of a Lazy PMC for Autrijus to play with.

Win32 make install

François Perrad provided a patch fixing MANIFEST.generated for Win32. Warnock applies.

Parrot on Win32

Ron Blaschke spent some time fixing Parrot on Win32, extending it to provide a shared library.

mod_parrot

Jeff Horwitz released mod_parrot 0.2. It includes nifty features like the beginning of an interpreter pool.

C90 Cleanup

Peter Sinnott moved a few declarations further up. Leo applied the patch.

MMD on Argument Count

Leo added the ability to MMD on argument count and PMC types.

Documentation Typos

Offer Kaye fixed a few typos. chromatic applied the patch.

pmc freeze.t

Leo admired the trickiness of Bernhard Schmalhofer in his freeze implementation.

sys.t failure on MinGW

François Perrad fixed a test failure on MinGW. Leo applied it.

Builtin Namespaces Issue

Peter Sinnott pointed out some failing tests. Leo fixed them.

locate_runtime_file Error

Bob Rogers provide a patch to switch PARROT_TEST to 1 by default. Leo applied it.

Bytecode Re-entrance

Nigel Sandever had some questions about how Parrot and threading worked. Melvin Smith provided the answers.

Pugs Questions for Parrot FAQ

Nicholas Clark noted that the question of why bother with Parrot when one has Pugs has come up recently. The answer went into the Parrot FAQ: speed.

Pascal for Perl

Sven Schubert wondered if people had any suggestions for how to get PAPAgei (his Pacal for Parrot compiler) up and running quickly. Leo told him to stick with the tools he knows rather than going too far afield.

Infix Op Proposal

Leo posted his proposal for how to revamp infix ops. Nicholas Clark and Luke Palmer asked a few questions.

Lexical Pad Depth

Cory Spencer wondered how to find the depth of the lexical pad stack. Leo told him.

Win32 Exit Codes

Ron Blaschke noticed that there were tests failing on Win32 because the exit code was not in the high 8 bits, but appeared directly. Leo suggested looking to Perl 5 for prior art on what to do.

Other Languages on Parrot

Bloves wondered if any other compilers were currently working toward targeting Parrot. I pointed him to Cardinal, a Ruby compiler for Parrot that appears dead.

Parrot64

Adam Preble wondered if there has been any work on Parrot for AMD64. The answer is: some, but nobody told him because he posted to Google Groups.

Parrot Win32-Setup

François Perrad provided a patch that creates a standard binary distribution for Win32. There was some debate over the name of the make target, but François is ready to send an updated version at Leo’s command.

Calling Convention Abstraction

Leopold Toetsch proposed a calling convention abstraction that would allow Parrot to change its ABI a little more freely in the future. Roget Hale asked a few questions which Leo answered.

No 0 Size Arrays

Ron Blaschke noticed a broken Windows build, because of a 0 sized array. Leo fixed it.

Unicode String Literal Assertion Failed

Will Coleda discovered a failing assertion in utf8.c. Leo fixed it.

NCI Call Signature Change

Leo changed the call signature for NCI to make I mean INTVAL and J mean Parrot Interpreter.

Builtin Infix Multis

Leo added support for MMD on infix multis.

touch vs utime

Chip asked if there was a reason that the TOUCH variable doesn’t use utime. Michael G. Schwern suggested ExtUtils::Command. Steve Peters points out that utime works only on existing files.

make imcc.l For Modern Flex

Chip opened a TODO for updating imcc.l to modern flex.

Mac OS X Build Broken

Will Coleda reported a broken build on Mac OS X with undefined symbols. Leo found the cause and reverted it.

SVN Switch

After much debate, the decision to switch from CVS to SVN has happened. The move will include the removal of ICU as a dependency. Good progress has occurred on that front.

MD5 on 64 Bits

Nick Glencross has been hard at work trying to fix the MD5 library for 64-bit systems. It would be easier if he had access to one.

Python Version Guesswork

Ron Blaschke noticed that ActiveState Python reports its build as 2.4 instead of 2.4.0. He provided a patch to account for this.

Posting via the Google Groups interface does not work. To post to any of these mailing lists please subscribe by sending email to perl6-internals-subscribe@perl.org, perl6-language-subscribe@perl.org, or perl6-compiler-subscribe@perl.org. If you find these summaries useful or enjoyable, please consider contributing to the Perl Foundation to help support the development of Perl. You might also like to send feedback to ubermatt@gmail.com.

Tags

Feedback

Something wrong with this article? Help us out by opening an issue or pull request on GitHub