That depends on which part of the problem you're talking about. It would be easy to define a dialect of Perl 6 that allowed this, but there is as of yet no standard path notation other than
%hash«Foo»«Bar»«Baz»
If I were going to make a dialect, I'd probably throw in a
use supersubscripts;
which would let me write
%hash«Foo/Bar/Baz»
instead to mean the same thing. But it's not clear that something like that should be inflicted on everyone unless the syntax were less likely to be confusing to someone who really means
%hash{'Foo/Bar/Baz'}
to mean a single key with slashes in it. It would need a more distinctive prefix if we were to build it in, and unfortunately we're really low on bracket characters, even with the addition of «», which we've already found lots of uses for. (Some would say too many... :-)

So the answer to your question is probably "no" for now...


In reply to Re^2: Dotted hash access by TimToady
in thread Dotted hash access by sfink

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.