Skip to content

Instantly share code, notes, and snippets.

@araraloren
Last active May 12, 2017 08:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save araraloren/379f1c8708325f0544697b2ccf602c70 to your computer and use it in GitHub Desktop.
Save araraloren/379f1c8708325f0544697b2ccf602c70 to your computer and use it in GitHub Desktop.
HTML grammar for perl6 doc index
#!/usr/bin/env perl6
use v6;
# not support innser html in paragraph
# not support single-tag like <x>
# the test source https://docs.perl6.org/language.html, without not support part
grammar HTML {
rule TOP {
<html>
}
token html {
[
<comment>
|
<tag>
]+ %% <newline>
}
token comment {
'<!' <-[\>]>+ '>'
}
token singletag {
'<' <tagname> \s* '/>'
|
'<' <tagname> \s* [ <tagattr>+ %% <[\s]>+ ] \s* '/>'
}
token tag {
[
<tagbeg> .*? '</' <tagname> \s* '>'
|
<tagbeg> <newline> [ <tag> | <singletag> ]+ %% <newline> <newline> '</' <tagname> \s* '>'
] <newline>
<?{
#say $/<tagbeg><tagname>.Str, $/<tagname>.Str;
$/<tagbeg><tagname>.Str eq $/<tagname>.Str;
}>
}
token tagbeg {
'<' <tagname> \s* '>'
|
'<' <tagname> \s* [ <tagattr>+ %% <[\s]>+ ] \s* '>'
}
token tagattr {
<attr> '=' <value>
}
token attr {
<[a..z]>+
}
token value {
\" (<-[\"]>+) \" | \' (<-[\']>+) \' | <-[\s\>]>+
}
token tagvalue {
.+?
}
token tagname {
<[a..z1..9]>+
}
token end {
'>'
}
token newline {
\s*
}
}
say HTML.parse(@*ARGS[0].IO.slurp);
<!doctype html>
<html lang="en">
<head>
<title>Perl 6 Language Documentation</title>
<meta charset="UTF-8" />
<style>
/* code gets the browser-default font
* kbd gets a slightly less common monospace font
* samp gets the hard pixelly fonts
*/
kbd { font-family: "Droid Sans Mono", "Luxi Mono", "Inconsolata", monospace }
samp { font-family: "Terminus", "Courier", "Lucida Console", monospace }
/* WHATWG HTML frowns on the use of <u> because it looks like a link,
* so we make it not look like one.
*/
u { text-decoration: none }
.nested {
margin-left: 3em;
}
// footnote things:
aside, u { opacity: 0.7 }
a[id^="fn-"]:target { background: #ff0 }
</style>
<link rel="stylesheet" href="//design.perl6.org/perl.css"/>
<meta name=viewport content="width=device-width, initial-scale=1"/>
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="/css/style.css?v=6" media="screen" title="default" />
<noscript> <style> #search { visibility: hidden; } </style> </noscript>
</head>
<body class="pod">
<div id="___top"></div>
<div id="header" class="pretty-box green">
<a href="/"
><img src="/images/Camelia.svg" alt="Camelia" id="logo" width=62 height=48
>&nbsp;Perl 6 Documentation</a
>
<div id="search" class="ui-widget">
<div class="green">
<input placeholder="Loading..." id="query"
accesskey="f" title="Enter term to search for (hit Esc to focus)"/>
</div>
<p id="not-found-message">
Not in Index
</p>
</div>
<div class="menu">
<div class="menu-items dark-green">
<a class="menu-item selected darker-green"
href="/language.html">
Language
</a>
<a class="menu-item "
href="/type.html">
Types
</a>
<a class="menu-item "
href="/routine.html">
Routines
</a>
<a class="menu-item "
href="/programs.html">
Programs
</a>
<a class="menu-item "
href="/examples.html">
Examples
</a>
<a class="menu-item "
href="/webchat.html">
Chat with us
</a>
</div>
</div>
</div>
<div id="content" class="pretty-box yellow">
<h1 class='title'>Perl 6 Language Documentation</h1>
<div class="pod-body
no-toc
">
<table class="pod-table">
<tbody>
<tr> <td><a href="/language/5to6-nutshell">5to6-nutshell</a></td> <td>Perl 5 to Perl 6, in a nutshell: How do I do what I used to do?</td> </tr> <tr> <td><a href="/language/5to6-perlfunc">5to6-perlfunc</a></td> <td>Perl 5 to Perl 6 guide - functions</td> </tr> <tr> <td><a href="/language/5to6-perlop">5to6-perlop</a></td> <td>Perl 5 to Perl 6 guide - operators</td> </tr> <tr> <td><a href="/language/5to6-perlsyn">5to6-perlsyn</a></td> <td>Perl 5 to Perl 6 guide - syntax</td> </tr> <tr> <td><a href="/language/5to6-perlvar">5to6-perlvar</a></td> <td>Perl 5 to Perl 6 guide - special variables</td> </tr> <tr> <td><a href="/language/about">About the Docs</a></td> <td>Meta-documentation</td> </tr> <tr> <td><a href="/language/classtut">Classes and Objects</a></td> <td>A tutorial for creating and using classes in Perl 6</td> </tr> <tr> <td><a href="/language/community">Community </a></td> <td>Information about the people working on and using Perl 6</td> </tr> <tr> <td><a href="/language/concurrency">Concurrency</a></td> <td>Concurrency and Asynchronous Programming</td> </tr> <tr> <td><a href="/language/containers">Containers</a></td> <td>A low-level explanation of Perl 6 containers</td> </tr> <tr> <td><a href="/language/contributors">Contributors</a></td> <td>List of contributors to Perl 6 over the years</td> </tr> <tr> <td><a href="/language/control">Control Flow</a></td> <td>Statements used to control the flow of execution</td> </tr> <tr> <td><a href="/language/unicode_entry">Entering Unicode Characters</a></td> <td>Input methods for unicode characters in editors and the shell</td> </tr> <tr> <td><a href="/language/exceptions">Exceptions</a></td> <td>Using exceptions in Perl 6</td> </tr> <tr> <td><a href="/language/experimental">Experimental Features</a></td> <td>New features for brave users</td> </tr> <tr> <td><a href="/language/faq">FAQ</a></td> <td>Frequently Asked Questions about Perl 6</td> </tr> <tr> <td><a href="/language/functions">Functions</a></td> <td>Functions and Functional Programming in Perl 6</td> </tr> <tr> <td><a href="/language/glossary">Glossary</a></td> <td>Glossary of Perl 6 terminology</td> </tr> <tr> <td><a href="/language/grammar_tutorial">Grammar Tutorial</a></td> <td>Why Grammars?</td> </tr> <tr> <td><a href="/language/grammars">Grammars</a></td> <td>Parsing and interpreting text</td> </tr> <tr> <td><a href="/language/io">Input/Output</a></td> <td>File-related operations</td> </tr> <tr> <td><a href="/language/io-guide">Input/Output The Definitive Guide</a></td> <td>Correctly use Perl 6 IO</td> </tr> <tr> <td><a href="/language/ipc">Inter-Process Communication</a></td> <td>Programs running other programs and communicating with them</td> </tr> <tr> <td><a href="/language/list">Lists, Sequences, and Arrays</a></td> <td>Positional data constructs</td> </tr> <tr> <td><a href="/language/mop">Meta-Object Protocol</a></td> <td>Introspection and the Perl 6 Object System</td> </tr> <tr> <td><a href="/language/modules-extra">Module Development Utilities</a></td> <td>What can help you write/test/improve your module(s)</td> </tr> <tr> <td><a href="/language/modules">Modules</a></td> <td>How to create, use and distribute Perl 6 modules</td> </tr> <tr> <td><a href="/language/nativecall">Native Calling Interface</a></td> <td>Call into dynamic libraries that follow the C calling convention</td> </tr> <tr> <td><a href="/language/objects">Object Orientation</a></td> <td>Object Orientation in Perl 6</td> </tr> <tr> <td><a href="/language/operators">Operators</a></td> <td>Common Perl 6 infixes, prefixes, postfixes, and more!</td> </tr> <tr> <td><a href="/language/packages">Packages</a></td> <td>Organizing and referencing namespaced program elements</td> </tr> <tr> <td><a href="/language/performance">Performance</a></td> <td>Measuring and improving run-time or compile-time performance</td> </tr> <tr> <td><a href="/language/pod">Perl 6 Pod</a></td> <td>An easy-to-use markup language</td> </tr> <tr> <td><a href="/language/haskell-to-p6">Perl 6 from Haskell - Nutshell</a></td> <td>Learning Perl 6 from Haskell, in a nutshell: What do I already know?</td> </tr> <tr> <td><a href="/language/py-nutshell">Perl 6 from Python - Nutshell</a></td> <td>Learning Perl 6 from Python, in a nutshell.</td> </tr> <tr> <td><a href="/language/rb-nutshell">Perl 6 from Ruby - Nutshell</a></td> <td>Learning Perl 6 from Ruby, in a nutshell: What do I already know?</td> </tr> <tr> <td><a href="/language/phasers">Phasers</a></td> <td>Program execution phases and corresponding phaser blocks</td> </tr> <tr> <td><a href="/language/tables">Pod 6 Tables</a></td> <td>The Good, the Bad, and the Ugly</td> </tr> <tr> <td><a href="/language/pragmas">Pragmas</a></td> <td>Special modules for special use</td> </tr> <tr> <td><a href="/language/quoting">Quoting Constructs</a></td> <td>Writing strings, word lists, and regexes in Perl 6</td> </tr> <tr> <td><a href="/language/regexes">Regexes</a></td> <td>Pattern matching against strings</td> </tr> <tr> <td><a href="/language/setbagmix">Sets, Bags, and Mixes</a></td> <td>Unordered collections of unique and weighted objects in Perl 6</td> </tr> <tr> <td><a href="/language/subscripts">Subscripts</a></td> <td>Accessing data structure elements by index or key</td> </tr> <tr> <td><a href="/language/syntax">Syntax</a></td> <td>General rules of Perl 6 syntax</td> </tr> <tr> <td><a href="/language/terms">Terms</a></td> <td>Perl 6 Terms</td> </tr> <tr> <td><a href="/language/testing">Testing</a></td> <td>Writing and running tests in Perl 6</td> </tr> <tr> <td><a href="/language/traps">Traps to avoid</a></td> <td>Traps to avoid when getting started with Perl 6</td> </tr> <tr> <td><a href="/language/typesystem">Typesystem</a></td> <td>Introduction to the type system of Perl 6</td> </tr> <tr> <td><a href="/language/unicode">Unicode</a></td> <td>Unicode Support in Perl 6</td> </tr> <tr> <td><a href="/language/unicode_texas">Unicode versus Texas symbols</a></td> <td>Unicode symbols and their Texas (ASCII) counterparts</td> </tr> <tr> <td><a href="/language/variables">Variables</a></td> <td>Variables in Perl 6</td> </tr>
</tbody>
</table>
</div>
</div>
<footer class="pretty-box yellow">
<p>
</p>
<p>
</p>
</footer>
<script type="text/javascript" src="/js/jquery-3.1.1.min.js?v=1"></script>
<script type="text/javascript" src="/js/jquery-ui.min.js?v=1"></script>
<script type="text/javascript" src="/js/search.js?v=2"></script>
<script type="text/javascript" src="/js/main.js?v=2"></script>
</body>
</html>
「<!doctype html>
<html lang="en">
<head>
<title>Perl 6 Language Documentation</title>
<meta charset="UTF-8" />
<style>
/* code gets the browser-default font
* kbd gets a slightly less common monospace font
* samp gets the hard pixelly fonts
*/
kbd { font-family: "Droid Sans Mono", "Luxi Mono", "Inconsolata", monospace }
samp { font-family: "Terminus", "Courier", "Lucida Console", monospace }
/* WHATWG HTML frowns on the use of <u> because it looks like a link,
* so we make it not look like one.
*/
u { text-decoration: none }
.nested {
margin-left: 3em;
}
// footnote things:
aside, u { opacity: 0.7 }
a[id^="fn-"]:target { background: #ff0 }
</style>
<link rel="stylesheet" href="//design.perl6.org/perl.css"/>
<meta name=viewport content="width=device-width, initial-scale=1"/>
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="/css/style.css?v=6" media="screen" title="default" />
<noscript> <style> #search { visibility: hidden; } </style> </noscript>
</head>
<body class="pod">
<div id="___top"></div>
<div id="header" class="pretty-box green">
<a href="/"
><img src="/images/Camelia.svg" alt="Camelia" id="logo" width=62 height=48
>&nbsp;Perl 6 Documentation</a
>
<div id="search" class="ui-widget">
<div class="green">
<input placeholder="Loading..." id="query"
accesskey="f" title="Enter term to search for (hit Esc to focus)"/>
</div>
<p id="not-found-message">
Not in Index
</p>
</div>
<div class="menu">
<div class="menu-items dark-green">
<a class="menu-item selected darker-green"
href="/language.html">
Language
</a>
<a class="menu-item "
href="/type.html">
Types
</a>
<a class="menu-item "
href="/routine.html">
Routines
</a>
<a class="menu-item "
href="/programs.html">
Programs
</a>
<a class="menu-item "
href="/examples.html">
Examples
</a>
<a class="menu-item "
href="/webchat.html">
Chat with us
</a>
</div>
</div>
</div>
<div id="content" class="pretty-box yellow">
<h1 class='title'>Perl 6 Language Documentation</h1>
<div class="pod-body
no-toc
">
<table class="pod-table">
<tbody>
<tr> <td><a href="/language/5to6-nutshell">5to6-nutshell</a></td> <td>Perl 5 to Perl 6, in a nutshell: How do I do what I used to do?</td> </tr> <tr> <td><a href="/language/5to6-perlfunc">5to6-perlfunc</a></td> <td>Perl 5 to Perl 6 guide - functions</td> </tr> <tr> <td><a href="/language/5to6-perlop">5to6-perlop</a></td> <td>Perl 5 to Perl 6 guide - operators</td> </tr> <tr> <td><a href="/language/5to6-perlsyn">5to6-perlsyn</a></td> <td>Perl 5 to Perl 6 guide - syntax</td> </tr> <tr> <td><a href="/language/5to6-perlvar">5to6-perlvar</a></td> <td>Perl 5 to Perl 6 guide - special variables</td> </tr> <tr> <td><a href="/language/about">About the Docs</a></td> <td>Meta-documentation</td> </tr> <tr> <td><a href="/language/classtut">Classes and Objects</a></td> <td>A tutorial for creating and using classes in Perl 6</td> </tr> <tr> <td><a href="/language/community">Community </a></td> <td>Information about the people working on and using Perl 6</td> </tr> <tr> <td><a href="/language/concurrency">Concurrency</a></td> <td>Concurrency and Asynchronous Programming</td> </tr> <tr> <td><a href="/language/containers">Containers</a></td> <td>A low-level explanation of Perl 6 containers</td> </tr> <tr> <td><a href="/language/contributors">Contributors</a></td> <td>List of contributors to Perl 6 over the years</td> </tr> <tr> <td><a href="/language/control">Control Flow</a></td> <td>Statements used to control the flow of execution</td> </tr> <tr> <td><a href="/language/unicode_entry">Entering Unicode Characters</a></td> <td>Input methods for unicode characters in editors and the shell</td> </tr> <tr> <td><a href="/language/exceptions">Exceptions</a></td> <td>Using exceptions in Perl 6</td> </tr> <tr> <td><a href="/language/experimental">Experimental Features</a></td> <td>New features for brave users</td> </tr> <tr> <td><a href="/language/faq">FAQ</a></td> <td>Frequently Asked Questions about Perl 6</td> </tr> <tr> <td><a href="/language/functions">Functions</a></td> <td>Functions and Functional Programming in Perl 6</td> </tr> <tr> <td><a href="/language/glossary">Glossary</a></td> <td>Glossary of Perl 6 terminology</td> </tr> <tr> <td><a href="/language/grammar_tutorial">Grammar Tutorial</a></td> <td>Why Grammars?</td> </tr> <tr> <td><a href="/language/grammars">Grammars</a></td> <td>Parsing and interpreting text</td> </tr> <tr> <td><a href="/language/io">Input/Output</a></td> <td>File-related operations</td> </tr> <tr> <td><a href="/language/io-guide">Input/Output The Definitive Guide</a></td> <td>Correctly use Perl 6 IO</td> </tr> <tr> <td><a href="/language/ipc">Inter-Process Communication</a></td> <td>Programs running other programs and communicating with them</td> </tr> <tr> <td><a href="/language/list">Lists, Sequences, and Arrays</a></td> <td>Positional data constructs</td> </tr> <tr> <td><a href="/language/mop">Meta-Object Protocol</a></td> <td>Introspection and the Perl 6 Object System</td> </tr> <tr> <td><a href="/language/modules-extra">Module Development Utilities</a></td> <td>What can help you write/test/improve your module(s)</td> </tr> <tr> <td><a href="/language/modules">Modules</a></td> <td>How to create, use and distribute Perl 6 modules</td> </tr> <tr> <td><a href="/language/nativecall">Native Calling Interface</a></td> <td>Call into dynamic libraries that follow the C calling convention</td> </tr> <tr> <td><a href="/language/objects">Object Orientation</a></td> <td>Object Orientation in Perl 6</td> </tr> <tr> <td><a href="/language/operators">Operators</a></td> <td>Common Perl 6 infixes, prefixes, postfixes, and more!</td> </tr> <tr> <td><a href="/language/packages">Packages</a></td> <td>Organizing and referencing namespaced program elements</td> </tr> <tr> <td><a href="/language/performance">Performance</a></td> <td>Measuring and improving run-time or compile-time performance</td> </tr> <tr> <td><a href="/language/pod">Perl 6 Pod</a></td> <td>An easy-to-use markup language</td> </tr> <tr> <td><a href="/language/haskell-to-p6">Perl 6 from Haskell - Nutshell</a></td> <td>Learning Perl 6 from Haskell, in a nutshell: What do I already know?</td> </tr> <tr> <td><a href="/language/py-nutshell">Perl 6 from Python - Nutshell</a></td> <td>Learning Perl 6 from Python, in a nutshell.</td> </tr> <tr> <td><a href="/language/rb-nutshell">Perl 6 from Ruby - Nutshell</a></td> <td>Learning Perl 6 from Ruby, in a nutshell: What do I already know?</td> </tr> <tr> <td><a href="/language/phasers">Phasers</a></td> <td>Program execution phases and corresponding phaser blocks</td> </tr> <tr> <td><a href="/language/tables">Pod 6 Tables</a></td> <td>The Good, the Bad, and the Ugly</td> </tr> <tr> <td><a href="/language/pragmas">Pragmas</a></td> <td>Special modules for special use</td> </tr> <tr> <td><a href="/language/quoting">Quoting Constructs</a></td> <td>Writing strings, word lists, and regexes in Perl 6</td> </tr> <tr> <td><a href="/language/regexes">Regexes</a></td> <td>Pattern matching against strings</td> </tr> <tr> <td><a href="/language/setbagmix">Sets, Bags, and Mixes</a></td> <td>Unordered collections of unique and weighted objects in Perl 6</td> </tr> <tr> <td><a href="/language/subscripts">Subscripts</a></td> <td>Accessing data structure elements by index or key</td> </tr> <tr> <td><a href="/language/syntax">Syntax</a></td> <td>General rules of Perl 6 syntax</td> </tr> <tr> <td><a href="/language/terms">Terms</a></td> <td>Perl 6 Terms</td> </tr> <tr> <td><a href="/language/testing">Testing</a></td> <td>Writing and running tests in Perl 6</td> </tr> <tr> <td><a href="/language/traps">Traps to avoid</a></td> <td>Traps to avoid when getting started with Perl 6</td> </tr> <tr> <td><a href="/language/typesystem">Typesystem</a></td> <td>Introduction to the type system of Perl 6</td> </tr> <tr> <td><a href="/language/unicode">Unicode</a></td> <td>Unicode Support in Perl 6</td> </tr> <tr> <td><a href="/language/unicode_texas">Unicode versus Texas symbols</a></td> <td>Unicode symbols and their Texas (ASCII) counterparts</td> </tr> <tr> <td><a href="/language/variables">Variables</a></td> <td>Variables in Perl 6</td> </tr>
</tbody>
</table>
</div>
</div>
<footer class="pretty-box yellow">
<p>
</p>
<p>
</p>
</footer>
<script type="text/javascript" src="/js/jquery-3.1.1.min.js?v=1"></script>
<script type="text/javascript" src="/js/jquery-ui.min.js?v=1"></script>
<script type="text/javascript" src="/js/search.js?v=2"></script>
<script type="text/javascript" src="/js/main.js?v=2"></script>
</body>
</html>
html => 「<!doctype html>
<html lang="en">
<head>
<title>Perl 6 Language Documentation</title>
<meta charset="UTF-8" />
<style>
/* code gets the browser-default font
* kbd gets a slightly less common monospace font
* samp gets the hard pixelly fonts
*/
kbd { font-family: "Droid Sans Mono", "Luxi Mono", "Inconsolata", monospace }
samp { font-family: "Terminus", "Courier", "Lucida Console", monospace }
/* WHATWG HTML frowns on the use of <u> because it looks like a link,
* so we make it not look like one.
*/
u { text-decoration: none }
.nested {
margin-left: 3em;
}
// footnote things:
aside, u { opacity: 0.7 }
a[id^="fn-"]:target { background: #ff0 }
</style>
<link rel="stylesheet" href="//design.perl6.org/perl.css"/>
<meta name=viewport content="width=device-width, initial-scale=1"/>
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="/css/style.css?v=6" media="screen" title="default" />
<noscript> <style> #search { visibility: hidden; } </style> </noscript>
</head>
<body class="pod">
<div id="___top"></div>
<div id="header" class="pretty-box green">
<a href="/"
><img src="/images/Camelia.svg" alt="Camelia" id="logo" width=62 height=48
>&nbsp;Perl 6 Documentation</a
>
<div id="search" class="ui-widget">
<div class="green">
<input placeholder="Loading..." id="query"
accesskey="f" title="Enter term to search for (hit Esc to focus)"/>
</div>
<p id="not-found-message">
Not in Index
</p>
</div>
<div class="menu">
<div class="menu-items dark-green">
<a class="menu-item selected darker-green"
href="/language.html">
Language
</a>
<a class="menu-item "
href="/type.html">
Types
</a>
<a class="menu-item "
href="/routine.html">
Routines
</a>
<a class="menu-item "
href="/programs.html">
Programs
</a>
<a class="menu-item "
href="/examples.html">
Examples
</a>
<a class="menu-item "
href="/webchat.html">
Chat with us
</a>
</div>
</div>
</div>
<div id="content" class="pretty-box yellow">
<h1 class='title'>Perl 6 Language Documentation</h1>
<div class="pod-body
no-toc
">
<table class="pod-table">
<tbody>
<tr> <td><a href="/language/5to6-nutshell">5to6-nutshell</a></td> <td>Perl 5 to Perl 6, in a nutshell: How do I do what I used to do?</td> </tr> <tr> <td><a href="/language/5to6-perlfunc">5to6-perlfunc</a></td> <td>Perl 5 to Perl 6 guide - functions</td> </tr> <tr> <td><a href="/language/5to6-perlop">5to6-perlop</a></td> <td>Perl 5 to Perl 6 guide - operators</td> </tr> <tr> <td><a href="/language/5to6-perlsyn">5to6-perlsyn</a></td> <td>Perl 5 to Perl 6 guide - syntax</td> </tr> <tr> <td><a href="/language/5to6-perlvar">5to6-perlvar</a></td> <td>Perl 5 to Perl 6 guide - special variables</td> </tr> <tr> <td><a href="/language/about">About the Docs</a></td> <td>Meta-documentation</td> </tr> <tr> <td><a href="/language/classtut">Classes and Objects</a></td> <td>A tutorial for creating and using classes in Perl 6</td> </tr> <tr> <td><a href="/language/community">Community </a></td> <td>Information about the people working on and using Perl 6</td> </tr> <tr> <td><a href="/language/concurrency">Concurrency</a></td> <td>Concurrency and Asynchronous Programming</td> </tr> <tr> <td><a href="/language/containers">Containers</a></td> <td>A low-level explanation of Perl 6 containers</td> </tr> <tr> <td><a href="/language/contributors">Contributors</a></td> <td>List of contributors to Perl 6 over the years</td> </tr> <tr> <td><a href="/language/control">Control Flow</a></td> <td>Statements used to control the flow of execution</td> </tr> <tr> <td><a href="/language/unicode_entry">Entering Unicode Characters</a></td> <td>Input methods for unicode characters in editors and the shell</td> </tr> <tr> <td><a href="/language/exceptions">Exceptions</a></td> <td>Using exceptions in Perl 6</td> </tr> <tr> <td><a href="/language/experimental">Experimental Features</a></td> <td>New features for brave users</td> </tr> <tr> <td><a href="/language/faq">FAQ</a></td> <td>Frequently Asked Questions about Perl 6</td> </tr> <tr> <td><a href="/language/functions">Functions</a></td> <td>Functions and Functional Programming in Perl 6</td> </tr> <tr> <td><a href="/language/glossary">Glossary</a></td> <td>Glossary of Perl 6 terminology</td> </tr> <tr> <td><a href="/language/grammar_tutorial">Grammar Tutorial</a></td> <td>Why Grammars?</td> </tr> <tr> <td><a href="/language/grammars">Grammars</a></td> <td>Parsing and interpreting text</td> </tr> <tr> <td><a href="/language/io">Input/Output</a></td> <td>File-related operations</td> </tr> <tr> <td><a href="/language/io-guide">Input/Output The Definitive Guide</a></td> <td>Correctly use Perl 6 IO</td> </tr> <tr> <td><a href="/language/ipc">Inter-Process Communication</a></td> <td>Programs running other programs and communicating with them</td> </tr> <tr> <td><a href="/language/list">Lists, Sequences, and Arrays</a></td> <td>Positional data constructs</td> </tr> <tr> <td><a href="/language/mop">Meta-Object Protocol</a></td> <td>Introspection and the Perl 6 Object System</td> </tr> <tr> <td><a href="/language/modules-extra">Module Development Utilities</a></td> <td>What can help you write/test/improve your module(s)</td> </tr> <tr> <td><a href="/language/modules">Modules</a></td> <td>How to create, use and distribute Perl 6 modules</td> </tr> <tr> <td><a href="/language/nativecall">Native Calling Interface</a></td> <td>Call into dynamic libraries that follow the C calling convention</td> </tr> <tr> <td><a href="/language/objects">Object Orientation</a></td> <td>Object Orientation in Perl 6</td> </tr> <tr> <td><a href="/language/operators">Operators</a></td> <td>Common Perl 6 infixes, prefixes, postfixes, and more!</td> </tr> <tr> <td><a href="/language/packages">Packages</a></td> <td>Organizing and referencing namespaced program elements</td> </tr> <tr> <td><a href="/language/performance">Performance</a></td> <td>Measuring and improving run-time or compile-time performance</td> </tr> <tr> <td><a href="/language/pod">Perl 6 Pod</a></td> <td>An easy-to-use markup language</td> </tr> <tr> <td><a href="/language/haskell-to-p6">Perl 6 from Haskell - Nutshell</a></td> <td>Learning Perl 6 from Haskell, in a nutshell: What do I already know?</td> </tr> <tr> <td><a href="/language/py-nutshell">Perl 6 from Python - Nutshell</a></td> <td>Learning Perl 6 from Python, in a nutshell.</td> </tr> <tr> <td><a href="/language/rb-nutshell">Perl 6 from Ruby - Nutshell</a></td> <td>Learning Perl 6 from Ruby, in a nutshell: What do I already know?</td> </tr> <tr> <td><a href="/language/phasers">Phasers</a></td> <td>Program execution phases and corresponding phaser blocks</td> </tr> <tr> <td><a href="/language/tables">Pod 6 Tables</a></td> <td>The Good, the Bad, and the Ugly</td> </tr> <tr> <td><a href="/language/pragmas">Pragmas</a></td> <td>Special modules for special use</td> </tr> <tr> <td><a href="/language/quoting">Quoting Constructs</a></td> <td>Writing strings, word lists, and regexes in Perl 6</td> </tr> <tr> <td><a href="/language/regexes">Regexes</a></td> <td>Pattern matching against strings</td> </tr> <tr> <td><a href="/language/setbagmix">Sets, Bags, and Mixes</a></td> <td>Unordered collections of unique and weighted objects in Perl 6</td> </tr> <tr> <td><a href="/language/subscripts">Subscripts</a></td> <td>Accessing data structure elements by index or key</td> </tr> <tr> <td><a href="/language/syntax">Syntax</a></td> <td>General rules of Perl 6 syntax</td> </tr> <tr> <td><a href="/language/terms">Terms</a></td> <td>Perl 6 Terms</td> </tr> <tr> <td><a href="/language/testing">Testing</a></td> <td>Writing and running tests in Perl 6</td> </tr> <tr> <td><a href="/language/traps">Traps to avoid</a></td> <td>Traps to avoid when getting started with Perl 6</td> </tr> <tr> <td><a href="/language/typesystem">Typesystem</a></td> <td>Introduction to the type system of Perl 6</td> </tr> <tr> <td><a href="/language/unicode">Unicode</a></td> <td>Unicode Support in Perl 6</td> </tr> <tr> <td><a href="/language/unicode_texas">Unicode versus Texas symbols</a></td> <td>Unicode symbols and their Texas (ASCII) counterparts</td> </tr> <tr> <td><a href="/language/variables">Variables</a></td> <td>Variables in Perl 6</td> </tr>
</tbody>
</table>
</div>
</div>
<footer class="pretty-box yellow">
<p>
</p>
<p>
</p>
</footer>
<script type="text/javascript" src="/js/jquery-3.1.1.min.js?v=1"></script>
<script type="text/javascript" src="/js/jquery-ui.min.js?v=1"></script>
<script type="text/javascript" src="/js/search.js?v=2"></script>
<script type="text/javascript" src="/js/main.js?v=2"></script>
</body>
</html>
comment => 「<!doctype html>」
newline => 「
tag => 「<html lang="en">
<head>
<title>Perl 6 Language Documentation</title>
<meta charset="UTF-8" />
<style>
/* code gets the browser-default font
* kbd gets a slightly less common monospace font
* samp gets the hard pixelly fonts
*/
kbd { font-family: "Droid Sans Mono", "Luxi Mono", "Inconsolata", monospace }
samp { font-family: "Terminus", "Courier", "Lucida Console", monospace }
/* WHATWG HTML frowns on the use of <u> because it looks like a link,
* so we make it not look like one.
*/
u { text-decoration: none }
.nested {
margin-left: 3em;
}
// footnote things:
aside, u { opacity: 0.7 }
a[id^="fn-"]:target { background: #ff0 }
</style>
<link rel="stylesheet" href="//design.perl6.org/perl.css"/>
<meta name=viewport content="width=device-width, initial-scale=1"/>
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="/css/style.css?v=6" media="screen" title="default" />
<noscript> <style> #search { visibility: hidden; } </style> </noscript>
</head>
<body class="pod">
<div id="___top"></div>
<div id="header" class="pretty-box green">
<a href="/"
><img src="/images/Camelia.svg" alt="Camelia" id="logo" width=62 height=48
>&nbsp;Perl 6 Documentation</a
>
<div id="search" class="ui-widget">
<div class="green">
<input placeholder="Loading..." id="query"
accesskey="f" title="Enter term to search for (hit Esc to focus)"/>
</div>
<p id="not-found-message">
Not in Index
</p>
</div>
<div class="menu">
<div class="menu-items dark-green">
<a class="menu-item selected darker-green"
href="/language.html">
Language
</a>
<a class="menu-item "
href="/type.html">
Types
</a>
<a class="menu-item "
href="/routine.html">
Routines
</a>
<a class="menu-item "
href="/programs.html">
Programs
</a>
<a class="menu-item "
href="/examples.html">
Examples
</a>
<a class="menu-item "
href="/webchat.html">
Chat with us
</a>
</div>
</div>
</div>
<div id="content" class="pretty-box yellow">
<h1 class='title'>Perl 6 Language Documentation</h1>
<div class="pod-body
no-toc
">
<table class="pod-table">
<tbody>
<tr> <td><a href="/language/5to6-nutshell">5to6-nutshell</a></td> <td>Perl 5 to Perl 6, in a nutshell: How do I do what I used to do?</td> </tr> <tr> <td><a href="/language/5to6-perlfunc">5to6-perlfunc</a></td> <td>Perl 5 to Perl 6 guide - functions</td> </tr> <tr> <td><a href="/language/5to6-perlop">5to6-perlop</a></td> <td>Perl 5 to Perl 6 guide - operators</td> </tr> <tr> <td><a href="/language/5to6-perlsyn">5to6-perlsyn</a></td> <td>Perl 5 to Perl 6 guide - syntax</td> </tr> <tr> <td><a href="/language/5to6-perlvar">5to6-perlvar</a></td> <td>Perl 5 to Perl 6 guide - special variables</td> </tr> <tr> <td><a href="/language/about">About the Docs</a></td> <td>Meta-documentation</td> </tr> <tr> <td><a href="/language/classtut">Classes and Objects</a></td> <td>A tutorial for creating and using classes in Perl 6</td> </tr> <tr> <td><a href="/language/community">Community </a></td> <td>Information about the people working on and using Perl 6</td> </tr> <tr> <td><a href="/language/concurrency">Concurrency</a></td> <td>Concurrency and Asynchronous Programming</td> </tr> <tr> <td><a href="/language/containers">Containers</a></td> <td>A low-level explanation of Perl 6 containers</td> </tr> <tr> <td><a href="/language/contributors">Contributors</a></td> <td>List of contributors to Perl 6 over the years</td> </tr> <tr> <td><a href="/language/control">Control Flow</a></td> <td>Statements used to control the flow of execution</td> </tr> <tr> <td><a href="/language/unicode_entry">Entering Unicode Characters</a></td> <td>Input methods for unicode characters in editors and the shell</td> </tr> <tr> <td><a href="/language/exceptions">Exceptions</a></td> <td>Using exceptions in Perl 6</td> </tr> <tr> <td><a href="/language/experimental">Experimental Features</a></td> <td>New features for brave users</td> </tr> <tr> <td><a href="/language/faq">FAQ</a></td> <td>Frequently Asked Questions about Perl 6</td> </tr> <tr> <td><a href="/language/functions">Functions</a></td> <td>Functions and Functional Programming in Perl 6</td> </tr> <tr> <td><a href="/language/glossary">Glossary</a></td> <td>Glossary of Perl 6 terminology</td> </tr> <tr> <td><a href="/language/grammar_tutorial">Grammar Tutorial</a></td> <td>Why Grammars?</td> </tr> <tr> <td><a href="/language/grammars">Grammars</a></td> <td>Parsing and interpreting text</td> </tr> <tr> <td><a href="/language/io">Input/Output</a></td> <td>File-related operations</td> </tr> <tr> <td><a href="/language/io-guide">Input/Output The Definitive Guide</a></td> <td>Correctly use Perl 6 IO</td> </tr> <tr> <td><a href="/language/ipc">Inter-Process Communication</a></td> <td>Programs running other programs and communicating with them</td> </tr> <tr> <td><a href="/language/list">Lists, Sequences, and Arrays</a></td> <td>Positional data constructs</td> </tr> <tr> <td><a href="/language/mop">Meta-Object Protocol</a></td> <td>Introspection and the Perl 6 Object System</td> </tr> <tr> <td><a href="/language/modules-extra">Module Development Utilities</a></td> <td>What can help you write/test/improve your module(s)</td> </tr> <tr> <td><a href="/language/modules">Modules</a></td> <td>How to create, use and distribute Perl 6 modules</td> </tr> <tr> <td><a href="/language/nativecall">Native Calling Interface</a></td> <td>Call into dynamic libraries that follow the C calling convention</td> </tr> <tr> <td><a href="/language/objects">Object Orientation</a></td> <td>Object Orientation in Perl 6</td> </tr> <tr> <td><a href="/language/operators">Operators</a></td> <td>Common Perl 6 infixes, prefixes, postfixes, and more!</td> </tr> <tr> <td><a href="/language/packages">Packages</a></td> <td>Organizing and referencing namespaced program elements</td> </tr> <tr> <td><a href="/language/performance">Performance</a></td> <td>Measuring and improving run-time or compile-time performance</td> </tr> <tr> <td><a href="/language/pod">Perl 6 Pod</a></td> <td>An easy-to-use markup language</td> </tr> <tr> <td><a href="/language/haskell-to-p6">Perl 6 from Haskell - Nutshell</a></td> <td>Learning Perl 6 from Haskell, in a nutshell: What do I already know?</td> </tr> <tr> <td><a href="/language/py-nutshell">Perl 6 from Python - Nutshell</a></td> <td>Learning Perl 6 from Python, in a nutshell.</td> </tr> <tr> <td><a href="/language/rb-nutshell">Perl 6 from Ruby - Nutshell</a></td> <td>Learning Perl 6 from Ruby, in a nutshell: What do I already know?</td> </tr> <tr> <td><a href="/language/phasers">Phasers</a></td> <td>Program execution phases and corresponding phaser blocks</td> </tr> <tr> <td><a href="/language/tables">Pod 6 Tables</a></td> <td>The Good, the Bad, and the Ugly</td> </tr> <tr> <td><a href="/language/pragmas">Pragmas</a></td> <td>Special modules for special use</td> </tr> <tr> <td><a href="/language/quoting">Quoting Constructs</a></td> <td>Writing strings, word lists, and regexes in Perl 6</td> </tr> <tr> <td><a href="/language/regexes">Regexes</a></td> <td>Pattern matching against strings</td> </tr> <tr> <td><a href="/language/setbagmix">Sets, Bags, and Mixes</a></td> <td>Unordered collections of unique and weighted objects in Perl 6</td> </tr> <tr> <td><a href="/language/subscripts">Subscripts</a></td> <td>Accessing data structure elements by index or key</td> </tr> <tr> <td><a href="/language/syntax">Syntax</a></td> <td>General rules of Perl 6 syntax</td> </tr> <tr> <td><a href="/language/terms">Terms</a></td> <td>Perl 6 Terms</td> </tr> <tr> <td><a href="/language/testing">Testing</a></td> <td>Writing and running tests in Perl 6</td> </tr> <tr> <td><a href="/language/traps">Traps to avoid</a></td> <td>Traps to avoid when getting started with Perl 6</td> </tr> <tr> <td><a href="/language/typesystem">Typesystem</a></td> <td>Introduction to the type system of Perl 6</td> </tr> <tr> <td><a href="/language/unicode">Unicode</a></td> <td>Unicode Support in Perl 6</td> </tr> <tr> <td><a href="/language/unicode_texas">Unicode versus Texas symbols</a></td> <td>Unicode symbols and their Texas (ASCII) counterparts</td> </tr> <tr> <td><a href="/language/variables">Variables</a></td> <td>Variables in Perl 6</td> </tr>
</tbody>
</table>
</div>
</div>
<footer class="pretty-box yellow">
<p>
</p>
<p>
</p>
</footer>
<script type="text/javascript" src="/js/jquery-3.1.1.min.js?v=1"></script>
<script type="text/javascript" src="/js/jquery-ui.min.js?v=1"></script>
<script type="text/javascript" src="/js/search.js?v=2"></script>
<script type="text/javascript" src="/js/main.js?v=2"></script>
</body>
</html>
tagbeg => 「<html lang="en">」
tagname => 「html」
tagattr => 「lang="en"」
attr => 「lang」
value => 「"en"」
0 => 「en」
newline => 「
tag => 「<head>
<title>Perl 6 Language Documentation</title>
<meta charset="UTF-8" />
<style>
/* code gets the browser-default font
* kbd gets a slightly less common monospace font
* samp gets the hard pixelly fonts
*/
kbd { font-family: "Droid Sans Mono", "Luxi Mono", "Inconsolata", monospace }
samp { font-family: "Terminus", "Courier", "Lucida Console", monospace }
/* WHATWG HTML frowns on the use of <u> because it looks like a link,
* so we make it not look like one.
*/
u { text-decoration: none }
.nested {
margin-left: 3em;
}
// footnote things:
aside, u { opacity: 0.7 }
a[id^="fn-"]:target { background: #ff0 }
</style>
<link rel="stylesheet" href="//design.perl6.org/perl.css"/>
<meta name=viewport content="width=device-width, initial-scale=1"/>
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="/css/style.css?v=6" media="screen" title="default" />
<noscript> <style> #search { visibility: hidden; } </style> </noscript>
</head>
tagbeg => 「<head>」
tagname => 「head」
newline => 「
tag => 「<title>Perl 6 Language Documentation</title>
tagbeg => 「<title>」
tagname => 「title」
tagname => 「title」
newline => 「
newline => 「」
singletag => 「<meta charset="UTF-8" />」
tagname => 「meta」
tagattr => 「charset="UTF-8"」
attr => 「charset」
value => 「"UTF-8"」
0 => 「UTF-8」
newline => 「
tag => 「<style>
/* code gets the browser-default font
* kbd gets a slightly less common monospace font
* samp gets the hard pixelly fonts
*/
kbd { font-family: "Droid Sans Mono", "Luxi Mono", "Inconsolata", monospace }
samp { font-family: "Terminus", "Courier", "Lucida Console", monospace }
/* WHATWG HTML frowns on the use of <u> because it looks like a link,
* so we make it not look like one.
*/
u { text-decoration: none }
.nested {
margin-left: 3em;
}
// footnote things:
aside, u { opacity: 0.7 }
a[id^="fn-"]:target { background: #ff0 }
</style>
tagbeg => 「<style>」
tagname => 「style」
tagname => 「style」
newline => 「
newline => 「」
singletag => 「<link rel="stylesheet" href="//design.perl6.org/perl.css"/>」
tagname => 「link」
tagattr => 「rel="stylesheet"」
attr => 「rel」
value => 「"stylesheet"」
0 => 「stylesheet」
tagattr => 「href="//design.perl6.org/perl.css"」
attr => 「href」
value => 「"//design.perl6.org/perl.css"」
0 => 「//design.perl6.org/perl.css」
newline => 「
singletag => 「<meta name=viewport content="width=device-width, initial-scale=1"/>」
tagname => 「meta」
tagattr => 「name=viewport」
attr => 「name」
value => 「viewport」
tagattr => 「content="width=device-width, initial-scale=1"」
attr => 「content」
value => 「"width=device-width, initial-scale=1"」
0 => 「width=device-width, initial-scale=1」
newline => 「
singletag => 「<link rel="icon" href="/favicon.ico" type="image/x-icon" />」
tagname => 「link」
tagattr => 「rel="icon"」
attr => 「rel」
value => 「"icon"」
0 => 「icon」
tagattr => 「href="/favicon.ico"」
attr => 「href」
value => 「"/favicon.ico"」
0 => 「/favicon.ico」
tagattr => 「type="image/x-icon"」
attr => 「type」
value => 「"image/x-icon"」
0 => 「image/x-icon」
newline => 「
singletag => 「<link rel="stylesheet" type="text/css" href="/css/style.css?v=6" media="screen" title="default" />」
tagname => 「link」
tagattr => 「rel="stylesheet"」
attr => 「rel」
value => 「"stylesheet"」
0 => 「stylesheet」
tagattr => 「type="text/css"」
attr => 「type」
value => 「"text/css"」
0 => 「text/css」
tagattr => 「href="/css/style.css?v=6"」
attr => 「href」
value => 「"/css/style.css?v=6"」
0 => 「/css/style.css?v=6」
tagattr => 「media="screen"」
attr => 「media」
value => 「"screen"」
0 => 「screen」
tagattr => 「title="default"」
attr => 「title」
value => 「"default"」
0 => 「default」
newline => 「
tag => 「<noscript> <style> #search { visibility: hidden; } </style> </noscript>
tagbeg => 「<noscript>」
tagname => 「noscript」
newline => 「 」
tag => 「<style> #search { visibility: hidden; } </style> 」
tagbeg => 「<style>」
tagname => 「style」
tagname => 「style」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「noscript」
newline => 「
newline => 「」
newline => 「」
tagname => 「head」
newline => 「
newline => 「」
tag => 「<body class="pod">
<div id="___top"></div>
<div id="header" class="pretty-box green">
<a href="/"
><img src="/images/Camelia.svg" alt="Camelia" id="logo" width=62 height=48
>&nbsp;Perl 6 Documentation</a
>
<div id="search" class="ui-widget">
<div class="green">
<input placeholder="Loading..." id="query"
accesskey="f" title="Enter term to search for (hit Esc to focus)"/>
</div>
<p id="not-found-message">
Not in Index
</p>
</div>
<div class="menu">
<div class="menu-items dark-green">
<a class="menu-item selected darker-green"
href="/language.html">
Language
</a>
<a class="menu-item "
href="/type.html">
Types
</a>
<a class="menu-item "
href="/routine.html">
Routines
</a>
<a class="menu-item "
href="/programs.html">
Programs
</a>
<a class="menu-item "
href="/examples.html">
Examples
</a>
<a class="menu-item "
href="/webchat.html">
Chat with us
</a>
</div>
</div>
</div>
<div id="content" class="pretty-box yellow">
<h1 class='title'>Perl 6 Language Documentation</h1>
<div class="pod-body
no-toc
">
<table class="pod-table">
<tbody>
<tr> <td><a href="/language/5to6-nutshell">5to6-nutshell</a></td> <td>Perl 5 to Perl 6, in a nutshell: How do I do what I used to do?</td> </tr> <tr> <td><a href="/language/5to6-perlfunc">5to6-perlfunc</a></td> <td>Perl 5 to Perl 6 guide - functions</td> </tr> <tr> <td><a href="/language/5to6-perlop">5to6-perlop</a></td> <td>Perl 5 to Perl 6 guide - operators</td> </tr> <tr> <td><a href="/language/5to6-perlsyn">5to6-perlsyn</a></td> <td>Perl 5 to Perl 6 guide - syntax</td> </tr> <tr> <td><a href="/language/5to6-perlvar">5to6-perlvar</a></td> <td>Perl 5 to Perl 6 guide - special variables</td> </tr> <tr> <td><a href="/language/about">About the Docs</a></td> <td>Meta-documentation</td> </tr> <tr> <td><a href="/language/classtut">Classes and Objects</a></td> <td>A tutorial for creating and using classes in Perl 6</td> </tr> <tr> <td><a href="/language/community">Community </a></td> <td>Information about the people working on and using Perl 6</td> </tr> <tr> <td><a href="/language/concurrency">Concurrency</a></td> <td>Concurrency and Asynchronous Programming</td> </tr> <tr> <td><a href="/language/containers">Containers</a></td> <td>A low-level explanation of Perl 6 containers</td> </tr> <tr> <td><a href="/language/contributors">Contributors</a></td> <td>List of contributors to Perl 6 over the years</td> </tr> <tr> <td><a href="/language/control">Control Flow</a></td> <td>Statements used to control the flow of execution</td> </tr> <tr> <td><a href="/language/unicode_entry">Entering Unicode Characters</a></td> <td>Input methods for unicode characters in editors and the shell</td> </tr> <tr> <td><a href="/language/exceptions">Exceptions</a></td> <td>Using exceptions in Perl 6</td> </tr> <tr> <td><a href="/language/experimental">Experimental Features</a></td> <td>New features for brave users</td> </tr> <tr> <td><a href="/language/faq">FAQ</a></td> <td>Frequently Asked Questions about Perl 6</td> </tr> <tr> <td><a href="/language/functions">Functions</a></td> <td>Functions and Functional Programming in Perl 6</td> </tr> <tr> <td><a href="/language/glossary">Glossary</a></td> <td>Glossary of Perl 6 terminology</td> </tr> <tr> <td><a href="/language/grammar_tutorial">Grammar Tutorial</a></td> <td>Why Grammars?</td> </tr> <tr> <td><a href="/language/grammars">Grammars</a></td> <td>Parsing and interpreting text</td> </tr> <tr> <td><a href="/language/io">Input/Output</a></td> <td>File-related operations</td> </tr> <tr> <td><a href="/language/io-guide">Input/Output The Definitive Guide</a></td> <td>Correctly use Perl 6 IO</td> </tr> <tr> <td><a href="/language/ipc">Inter-Process Communication</a></td> <td>Programs running other programs and communicating with them</td> </tr> <tr> <td><a href="/language/list">Lists, Sequences, and Arrays</a></td> <td>Positional data constructs</td> </tr> <tr> <td><a href="/language/mop">Meta-Object Protocol</a></td> <td>Introspection and the Perl 6 Object System</td> </tr> <tr> <td><a href="/language/modules-extra">Module Development Utilities</a></td> <td>What can help you write/test/improve your module(s)</td> </tr> <tr> <td><a href="/language/modules">Modules</a></td> <td>How to create, use and distribute Perl 6 modules</td> </tr> <tr> <td><a href="/language/nativecall">Native Calling Interface</a></td> <td>Call into dynamic libraries that follow the C calling convention</td> </tr> <tr> <td><a href="/language/objects">Object Orientation</a></td> <td>Object Orientation in Perl 6</td> </tr> <tr> <td><a href="/language/operators">Operators</a></td> <td>Common Perl 6 infixes, prefixes, postfixes, and more!</td> </tr> <tr> <td><a href="/language/packages">Packages</a></td> <td>Organizing and referencing namespaced program elements</td> </tr> <tr> <td><a href="/language/performance">Performance</a></td> <td>Measuring and improving run-time or compile-time performance</td> </tr> <tr> <td><a href="/language/pod">Perl 6 Pod</a></td> <td>An easy-to-use markup language</td> </tr> <tr> <td><a href="/language/haskell-to-p6">Perl 6 from Haskell - Nutshell</a></td> <td>Learning Perl 6 from Haskell, in a nutshell: What do I already know?</td> </tr> <tr> <td><a href="/language/py-nutshell">Perl 6 from Python - Nutshell</a></td> <td>Learning Perl 6 from Python, in a nutshell.</td> </tr> <tr> <td><a href="/language/rb-nutshell">Perl 6 from Ruby - Nutshell</a></td> <td>Learning Perl 6 from Ruby, in a nutshell: What do I already know?</td> </tr> <tr> <td><a href="/language/phasers">Phasers</a></td> <td>Program execution phases and corresponding phaser blocks</td> </tr> <tr> <td><a href="/language/tables">Pod 6 Tables</a></td> <td>The Good, the Bad, and the Ugly</td> </tr> <tr> <td><a href="/language/pragmas">Pragmas</a></td> <td>Special modules for special use</td> </tr> <tr> <td><a href="/language/quoting">Quoting Constructs</a></td> <td>Writing strings, word lists, and regexes in Perl 6</td> </tr> <tr> <td><a href="/language/regexes">Regexes</a></td> <td>Pattern matching against strings</td> </tr> <tr> <td><a href="/language/setbagmix">Sets, Bags, and Mixes</a></td> <td>Unordered collections of unique and weighted objects in Perl 6</td> </tr> <tr> <td><a href="/language/subscripts">Subscripts</a></td> <td>Accessing data structure elements by index or key</td> </tr> <tr> <td><a href="/language/syntax">Syntax</a></td> <td>General rules of Perl 6 syntax</td> </tr> <tr> <td><a href="/language/terms">Terms</a></td> <td>Perl 6 Terms</td> </tr> <tr> <td><a href="/language/testing">Testing</a></td> <td>Writing and running tests in Perl 6</td> </tr> <tr> <td><a href="/language/traps">Traps to avoid</a></td> <td>Traps to avoid when getting started with Perl 6</td> </tr> <tr> <td><a href="/language/typesystem">Typesystem</a></td> <td>Introduction to the type system of Perl 6</td> </tr> <tr> <td><a href="/language/unicode">Unicode</a></td> <td>Unicode Support in Perl 6</td> </tr> <tr> <td><a href="/language/unicode_texas">Unicode versus Texas symbols</a></td> <td>Unicode symbols and their Texas (ASCII) counterparts</td> </tr> <tr> <td><a href="/language/variables">Variables</a></td> <td>Variables in Perl 6</td> </tr>
</tbody>
</table>
</div>
</div>
<footer class="pretty-box yellow">
<p>
</p>
<p>
</p>
</footer>
<script type="text/javascript" src="/js/jquery-3.1.1.min.js?v=1"></script>
<script type="text/javascript" src="/js/jquery-ui.min.js?v=1"></script>
<script type="text/javascript" src="/js/search.js?v=2"></script>
<script type="text/javascript" src="/js/main.js?v=2"></script>
</body>
tagbeg => 「<body class="pod">」
tagname => 「body」
tagattr => 「class="pod"」
attr => 「class」
value => 「"pod"」
0 => 「pod」
newline => 「
tag => 「<div id="___top"></div>
tagbeg => 「<div id="___top">」
tagname => 「div」
tagattr => 「id="___top"」
attr => 「id」
value => 「"___top"」
0 => 「___top」
tagname => 「div」
newline => 「
newline => 「」
tag => 「<div id="header" class="pretty-box green">
<a href="/"
><img src="/images/Camelia.svg" alt="Camelia" id="logo" width=62 height=48
>&nbsp;Perl 6 Documentation</a
>
<div id="search" class="ui-widget">
<div class="green">
<input placeholder="Loading..." id="query"
accesskey="f" title="Enter term to search for (hit Esc to focus)"/>
</div>
<p id="not-found-message">
Not in Index
</p>
</div>
<div class="menu">
<div class="menu-items dark-green">
<a class="menu-item selected darker-green"
href="/language.html">
Language
</a>
<a class="menu-item "
href="/type.html">
Types
</a>
<a class="menu-item "
href="/routine.html">
Routines
</a>
<a class="menu-item "
href="/programs.html">
Programs
</a>
<a class="menu-item "
href="/examples.html">
Examples
</a>
<a class="menu-item "
href="/webchat.html">
Chat with us
</a>
</div>
</div>
</div>
tagbeg => 「<div id="header" class="pretty-box green">」
tagname => 「div」
tagattr => 「id="header"」
attr => 「id」
value => 「"header"」
0 => 「header」
tagattr => 「class="pretty-box green"」
attr => 「class」
value => 「"pretty-box green"」
0 => 「pretty-box green」
newline => 「
tag => 「<a href="/"
><img src="/images/Camelia.svg" alt="Camelia" id="logo" width=62 height=48
>&nbsp;Perl 6 Documentation</a
>
tagbeg => 「<a href="/"
>」
tagname => 「a」
tagattr => 「href="/"」
attr => 「href」
value => 「"/"」
0 => 「/」
tagname => 「a」
newline => 「
newline => 「」
tag => 「<div id="search" class="ui-widget">
<div class="green">
<input placeholder="Loading..." id="query"
accesskey="f" title="Enter term to search for (hit Esc to focus)"/>
</div>
<p id="not-found-message">
Not in Index
</p>
</div>
tagbeg => 「<div id="search" class="ui-widget">」
tagname => 「div」
tagattr => 「id="search"」
attr => 「id」
value => 「"search"」
0 => 「search」
tagattr => 「class="ui-widget"」
attr => 「class」
value => 「"ui-widget"」
0 => 「ui-widget」
newline => 「
tag => 「<div class="green">
<input placeholder="Loading..." id="query"
accesskey="f" title="Enter term to search for (hit Esc to focus)"/>
</div>
tagbeg => 「<div class="green">」
tagname => 「div」
tagattr => 「class="green"」
attr => 「class」
value => 「"green"」
0 => 「green」
tagname => 「div」
newline => 「
newline => 「」
tag => 「<p id="not-found-message">
Not in Index
</p>
tagbeg => 「<p id="not-found-message">」
tagname => 「p」
tagattr => 「id="not-found-message"」
attr => 「id」
value => 「"not-found-message"」
0 => 「not-found-message」
tagname => 「p」
newline => 「
newline => 「」
newline => 「」
tagname => 「div」
newline => 「
newline => 「」
tag => 「<div class="menu">
<div class="menu-items dark-green">
<a class="menu-item selected darker-green"
href="/language.html">
Language
</a>
<a class="menu-item "
href="/type.html">
Types
</a>
<a class="menu-item "
href="/routine.html">
Routines
</a>
<a class="menu-item "
href="/programs.html">
Programs
</a>
<a class="menu-item "
href="/examples.html">
Examples
</a>
<a class="menu-item "
href="/webchat.html">
Chat with us
</a>
</div>
</div>
tagbeg => 「<div class="menu">」
tagname => 「div」
tagattr => 「class="menu"」
attr => 「class」
value => 「"menu"」
0 => 「menu」
newline => 「
tag => 「<div class="menu-items dark-green">
<a class="menu-item selected darker-green"
href="/language.html">
Language
</a>
<a class="menu-item "
href="/type.html">
Types
</a>
<a class="menu-item "
href="/routine.html">
Routines
</a>
<a class="menu-item "
href="/programs.html">
Programs
</a>
<a class="menu-item "
href="/examples.html">
Examples
</a>
<a class="menu-item "
href="/webchat.html">
Chat with us
</a>
</div>
tagbeg => 「<div class="menu-items dark-green">」
tagname => 「div」
tagattr => 「class="menu-items dark-green"」
attr => 「class」
value => 「"menu-items dark-green"」
0 => 「menu-items dark-green」
newline => 「
tag => 「<a class="menu-item selected darker-green"
href="/language.html">
Language
</a>
tagbeg => 「<a class="menu-item selected darker-green"
href="/language.html">」
tagname => 「a」
tagattr => 「class="menu-item selected darker-green"」
attr => 「class」
value => 「"menu-item selected darker-green"」
0 => 「menu-item selected darker-green」
tagattr => 「href="/language.html"」
attr => 「href」
value => 「"/language.html"」
0 => 「/language.html」
tagname => 「a」
newline => 「
newline => 「」
tag => 「<a class="menu-item "
href="/type.html">
Types
</a>
tagbeg => 「<a class="menu-item "
href="/type.html">」
tagname => 「a」
tagattr => 「class="menu-item "」
attr => 「class」
value => 「"menu-item "」
0 => 「menu-item 」
tagattr => 「href="/type.html"」
attr => 「href」
value => 「"/type.html"」
0 => 「/type.html」
tagname => 「a」
newline => 「
newline => 「」
tag => 「<a class="menu-item "
href="/routine.html">
Routines
</a>
tagbeg => 「<a class="menu-item "
href="/routine.html">」
tagname => 「a」
tagattr => 「class="menu-item "」
attr => 「class」
value => 「"menu-item "」
0 => 「menu-item 」
tagattr => 「href="/routine.html"」
attr => 「href」
value => 「"/routine.html"」
0 => 「/routine.html」
tagname => 「a」
newline => 「
newline => 「」
tag => 「<a class="menu-item "
href="/programs.html">
Programs
</a>
tagbeg => 「<a class="menu-item "
href="/programs.html">」
tagname => 「a」
tagattr => 「class="menu-item "」
attr => 「class」
value => 「"menu-item "」
0 => 「menu-item 」
tagattr => 「href="/programs.html"」
attr => 「href」
value => 「"/programs.html"」
0 => 「/programs.html」
tagname => 「a」
newline => 「
newline => 「」
tag => 「<a class="menu-item "
href="/examples.html">
Examples
</a>
tagbeg => 「<a class="menu-item "
href="/examples.html">」
tagname => 「a」
tagattr => 「class="menu-item "」
attr => 「class」
value => 「"menu-item "」
0 => 「menu-item 」
tagattr => 「href="/examples.html"」
attr => 「href」
value => 「"/examples.html"」
0 => 「/examples.html」
tagname => 「a」
newline => 「
newline => 「」
tag => 「<a class="menu-item "
href="/webchat.html">
Chat with us
</a>
tagbeg => 「<a class="menu-item "
href="/webchat.html">」
tagname => 「a」
tagattr => 「class="menu-item "」
attr => 「class」
value => 「"menu-item "」
0 => 「menu-item 」
tagattr => 「href="/webchat.html"」
attr => 「href」
value => 「"/webchat.html"」
0 => 「/webchat.html」
tagname => 「a」
newline => 「
newline => 「」
newline => 「」
tagname => 「div」
newline => 「
newline => 「」
newline => 「」
tagname => 「div」
newline => 「
newline => 「」
newline => 「」
tagname => 「div」
newline => 「
newline => 「」
tag => 「<div id="content" class="pretty-box yellow">
<h1 class='title'>Perl 6 Language Documentation</h1>
<div class="pod-body
no-toc
">
<table class="pod-table">
<tbody>
<tr> <td><a href="/language/5to6-nutshell">5to6-nutshell</a></td> <td>Perl 5 to Perl 6, in a nutshell: How do I do what I used to do?</td> </tr> <tr> <td><a href="/language/5to6-perlfunc">5to6-perlfunc</a></td> <td>Perl 5 to Perl 6 guide - functions</td> </tr> <tr> <td><a href="/language/5to6-perlop">5to6-perlop</a></td> <td>Perl 5 to Perl 6 guide - operators</td> </tr> <tr> <td><a href="/language/5to6-perlsyn">5to6-perlsyn</a></td> <td>Perl 5 to Perl 6 guide - syntax</td> </tr> <tr> <td><a href="/language/5to6-perlvar">5to6-perlvar</a></td> <td>Perl 5 to Perl 6 guide - special variables</td> </tr> <tr> <td><a href="/language/about">About the Docs</a></td> <td>Meta-documentation</td> </tr> <tr> <td><a href="/language/classtut">Classes and Objects</a></td> <td>A tutorial for creating and using classes in Perl 6</td> </tr> <tr> <td><a href="/language/community">Community </a></td> <td>Information about the people working on and using Perl 6</td> </tr> <tr> <td><a href="/language/concurrency">Concurrency</a></td> <td>Concurrency and Asynchronous Programming</td> </tr> <tr> <td><a href="/language/containers">Containers</a></td> <td>A low-level explanation of Perl 6 containers</td> </tr> <tr> <td><a href="/language/contributors">Contributors</a></td> <td>List of contributors to Perl 6 over the years</td> </tr> <tr> <td><a href="/language/control">Control Flow</a></td> <td>Statements used to control the flow of execution</td> </tr> <tr> <td><a href="/language/unicode_entry">Entering Unicode Characters</a></td> <td>Input methods for unicode characters in editors and the shell</td> </tr> <tr> <td><a href="/language/exceptions">Exceptions</a></td> <td>Using exceptions in Perl 6</td> </tr> <tr> <td><a href="/language/experimental">Experimental Features</a></td> <td>New features for brave users</td> </tr> <tr> <td><a href="/language/faq">FAQ</a></td> <td>Frequently Asked Questions about Perl 6</td> </tr> <tr> <td><a href="/language/functions">Functions</a></td> <td>Functions and Functional Programming in Perl 6</td> </tr> <tr> <td><a href="/language/glossary">Glossary</a></td> <td>Glossary of Perl 6 terminology</td> </tr> <tr> <td><a href="/language/grammar_tutorial">Grammar Tutorial</a></td> <td>Why Grammars?</td> </tr> <tr> <td><a href="/language/grammars">Grammars</a></td> <td>Parsing and interpreting text</td> </tr> <tr> <td><a href="/language/io">Input/Output</a></td> <td>File-related operations</td> </tr> <tr> <td><a href="/language/io-guide">Input/Output The Definitive Guide</a></td> <td>Correctly use Perl 6 IO</td> </tr> <tr> <td><a href="/language/ipc">Inter-Process Communication</a></td> <td>Programs running other programs and communicating with them</td> </tr> <tr> <td><a href="/language/list">Lists, Sequences, and Arrays</a></td> <td>Positional data constructs</td> </tr> <tr> <td><a href="/language/mop">Meta-Object Protocol</a></td> <td>Introspection and the Perl 6 Object System</td> </tr> <tr> <td><a href="/language/modules-extra">Module Development Utilities</a></td> <td>What can help you write/test/improve your module(s)</td> </tr> <tr> <td><a href="/language/modules">Modules</a></td> <td>How to create, use and distribute Perl 6 modules</td> </tr> <tr> <td><a href="/language/nativecall">Native Calling Interface</a></td> <td>Call into dynamic libraries that follow the C calling convention</td> </tr> <tr> <td><a href="/language/objects">Object Orientation</a></td> <td>Object Orientation in Perl 6</td> </tr> <tr> <td><a href="/language/operators">Operators</a></td> <td>Common Perl 6 infixes, prefixes, postfixes, and more!</td> </tr> <tr> <td><a href="/language/packages">Packages</a></td> <td>Organizing and referencing namespaced program elements</td> </tr> <tr> <td><a href="/language/performance">Performance</a></td> <td>Measuring and improving run-time or compile-time performance</td> </tr> <tr> <td><a href="/language/pod">Perl 6 Pod</a></td> <td>An easy-to-use markup language</td> </tr> <tr> <td><a href="/language/haskell-to-p6">Perl 6 from Haskell - Nutshell</a></td> <td>Learning Perl 6 from Haskell, in a nutshell: What do I already know?</td> </tr> <tr> <td><a href="/language/py-nutshell">Perl 6 from Python - Nutshell</a></td> <td>Learning Perl 6 from Python, in a nutshell.</td> </tr> <tr> <td><a href="/language/rb-nutshell">Perl 6 from Ruby - Nutshell</a></td> <td>Learning Perl 6 from Ruby, in a nutshell: What do I already know?</td> </tr> <tr> <td><a href="/language/phasers">Phasers</a></td> <td>Program execution phases and corresponding phaser blocks</td> </tr> <tr> <td><a href="/language/tables">Pod 6 Tables</a></td> <td>The Good, the Bad, and the Ugly</td> </tr> <tr> <td><a href="/language/pragmas">Pragmas</a></td> <td>Special modules for special use</td> </tr> <tr> <td><a href="/language/quoting">Quoting Constructs</a></td> <td>Writing strings, word lists, and regexes in Perl 6</td> </tr> <tr> <td><a href="/language/regexes">Regexes</a></td> <td>Pattern matching against strings</td> </tr> <tr> <td><a href="/language/setbagmix">Sets, Bags, and Mixes</a></td> <td>Unordered collections of unique and weighted objects in Perl 6</td> </tr> <tr> <td><a href="/language/subscripts">Subscripts</a></td> <td>Accessing data structure elements by index or key</td> </tr> <tr> <td><a href="/language/syntax">Syntax</a></td> <td>General rules of Perl 6 syntax</td> </tr> <tr> <td><a href="/language/terms">Terms</a></td> <td>Perl 6 Terms</td> </tr> <tr> <td><a href="/language/testing">Testing</a></td> <td>Writing and running tests in Perl 6</td> </tr> <tr> <td><a href="/language/traps">Traps to avoid</a></td> <td>Traps to avoid when getting started with Perl 6</td> </tr> <tr> <td><a href="/language/typesystem">Typesystem</a></td> <td>Introduction to the type system of Perl 6</td> </tr> <tr> <td><a href="/language/unicode">Unicode</a></td> <td>Unicode Support in Perl 6</td> </tr> <tr> <td><a href="/language/unicode_texas">Unicode versus Texas symbols</a></td> <td>Unicode symbols and their Texas (ASCII) counterparts</td> </tr> <tr> <td><a href="/language/variables">Variables</a></td> <td>Variables in Perl 6</td> </tr>
</tbody>
</table>
</div>
</div>
tagbeg => 「<div id="content" class="pretty-box yellow">」
tagname => 「div」
tagattr => 「id="content"」
attr => 「id」
value => 「"content"」
0 => 「content」
tagattr => 「class="pretty-box yellow"」
attr => 「class」
value => 「"pretty-box yellow"」
0 => 「pretty-box yellow」
newline => 「
tag => 「<h1 class='title'>Perl 6 Language Documentation</h1>
tagbeg => 「<h1 class='title'>」
tagname => 「h1」
tagattr => 「class='title'」
attr => 「class」
value => 「'title'」
0 => 「title」
tagname => 「h1」
newline => 「
newline => 「」
tag => 「<div class="pod-body
no-toc
">
<table class="pod-table">
<tbody>
<tr> <td><a href="/language/5to6-nutshell">5to6-nutshell</a></td> <td>Perl 5 to Perl 6, in a nutshell: How do I do what I used to do?</td> </tr> <tr> <td><a href="/language/5to6-perlfunc">5to6-perlfunc</a></td> <td>Perl 5 to Perl 6 guide - functions</td> </tr> <tr> <td><a href="/language/5to6-perlop">5to6-perlop</a></td> <td>Perl 5 to Perl 6 guide - operators</td> </tr> <tr> <td><a href="/language/5to6-perlsyn">5to6-perlsyn</a></td> <td>Perl 5 to Perl 6 guide - syntax</td> </tr> <tr> <td><a href="/language/5to6-perlvar">5to6-perlvar</a></td> <td>Perl 5 to Perl 6 guide - special variables</td> </tr> <tr> <td><a href="/language/about">About the Docs</a></td> <td>Meta-documentation</td> </tr> <tr> <td><a href="/language/classtut">Classes and Objects</a></td> <td>A tutorial for creating and using classes in Perl 6</td> </tr> <tr> <td><a href="/language/community">Community </a></td> <td>Information about the people working on and using Perl 6</td> </tr> <tr> <td><a href="/language/concurrency">Concurrency</a></td> <td>Concurrency and Asynchronous Programming</td> </tr> <tr> <td><a href="/language/containers">Containers</a></td> <td>A low-level explanation of Perl 6 containers</td> </tr> <tr> <td><a href="/language/contributors">Contributors</a></td> <td>List of contributors to Perl 6 over the years</td> </tr> <tr> <td><a href="/language/control">Control Flow</a></td> <td>Statements used to control the flow of execution</td> </tr> <tr> <td><a href="/language/unicode_entry">Entering Unicode Characters</a></td> <td>Input methods for unicode characters in editors and the shell</td> </tr> <tr> <td><a href="/language/exceptions">Exceptions</a></td> <td>Using exceptions in Perl 6</td> </tr> <tr> <td><a href="/language/experimental">Experimental Features</a></td> <td>New features for brave users</td> </tr> <tr> <td><a href="/language/faq">FAQ</a></td> <td>Frequently Asked Questions about Perl 6</td> </tr> <tr> <td><a href="/language/functions">Functions</a></td> <td>Functions and Functional Programming in Perl 6</td> </tr> <tr> <td><a href="/language/glossary">Glossary</a></td> <td>Glossary of Perl 6 terminology</td> </tr> <tr> <td><a href="/language/grammar_tutorial">Grammar Tutorial</a></td> <td>Why Grammars?</td> </tr> <tr> <td><a href="/language/grammars">Grammars</a></td> <td>Parsing and interpreting text</td> </tr> <tr> <td><a href="/language/io">Input/Output</a></td> <td>File-related operations</td> </tr> <tr> <td><a href="/language/io-guide">Input/Output The Definitive Guide</a></td> <td>Correctly use Perl 6 IO</td> </tr> <tr> <td><a href="/language/ipc">Inter-Process Communication</a></td> <td>Programs running other programs and communicating with them</td> </tr> <tr> <td><a href="/language/list">Lists, Sequences, and Arrays</a></td> <td>Positional data constructs</td> </tr> <tr> <td><a href="/language/mop">Meta-Object Protocol</a></td> <td>Introspection and the Perl 6 Object System</td> </tr> <tr> <td><a href="/language/modules-extra">Module Development Utilities</a></td> <td>What can help you write/test/improve your module(s)</td> </tr> <tr> <td><a href="/language/modules">Modules</a></td> <td>How to create, use and distribute Perl 6 modules</td> </tr> <tr> <td><a href="/language/nativecall">Native Calling Interface</a></td> <td>Call into dynamic libraries that follow the C calling convention</td> </tr> <tr> <td><a href="/language/objects">Object Orientation</a></td> <td>Object Orientation in Perl 6</td> </tr> <tr> <td><a href="/language/operators">Operators</a></td> <td>Common Perl 6 infixes, prefixes, postfixes, and more!</td> </tr> <tr> <td><a href="/language/packages">Packages</a></td> <td>Organizing and referencing namespaced program elements</td> </tr> <tr> <td><a href="/language/performance">Performance</a></td> <td>Measuring and improving run-time or compile-time performance</td> </tr> <tr> <td><a href="/language/pod">Perl 6 Pod</a></td> <td>An easy-to-use markup language</td> </tr> <tr> <td><a href="/language/haskell-to-p6">Perl 6 from Haskell - Nutshell</a></td> <td>Learning Perl 6 from Haskell, in a nutshell: What do I already know?</td> </tr> <tr> <td><a href="/language/py-nutshell">Perl 6 from Python - Nutshell</a></td> <td>Learning Perl 6 from Python, in a nutshell.</td> </tr> <tr> <td><a href="/language/rb-nutshell">Perl 6 from Ruby - Nutshell</a></td> <td>Learning Perl 6 from Ruby, in a nutshell: What do I already know?</td> </tr> <tr> <td><a href="/language/phasers">Phasers</a></td> <td>Program execution phases and corresponding phaser blocks</td> </tr> <tr> <td><a href="/language/tables">Pod 6 Tables</a></td> <td>The Good, the Bad, and the Ugly</td> </tr> <tr> <td><a href="/language/pragmas">Pragmas</a></td> <td>Special modules for special use</td> </tr> <tr> <td><a href="/language/quoting">Quoting Constructs</a></td> <td>Writing strings, word lists, and regexes in Perl 6</td> </tr> <tr> <td><a href="/language/regexes">Regexes</a></td> <td>Pattern matching against strings</td> </tr> <tr> <td><a href="/language/setbagmix">Sets, Bags, and Mixes</a></td> <td>Unordered collections of unique and weighted objects in Perl 6</td> </tr> <tr> <td><a href="/language/subscripts">Subscripts</a></td> <td>Accessing data structure elements by index or key</td> </tr> <tr> <td><a href="/language/syntax">Syntax</a></td> <td>General rules of Perl 6 syntax</td> </tr> <tr> <td><a href="/language/terms">Terms</a></td> <td>Perl 6 Terms</td> </tr> <tr> <td><a href="/language/testing">Testing</a></td> <td>Writing and running tests in Perl 6</td> </tr> <tr> <td><a href="/language/traps">Traps to avoid</a></td> <td>Traps to avoid when getting started with Perl 6</td> </tr> <tr> <td><a href="/language/typesystem">Typesystem</a></td> <td>Introduction to the type system of Perl 6</td> </tr> <tr> <td><a href="/language/unicode">Unicode</a></td> <td>Unicode Support in Perl 6</td> </tr> <tr> <td><a href="/language/unicode_texas">Unicode versus Texas symbols</a></td> <td>Unicode symbols and their Texas (ASCII) counterparts</td> </tr> <tr> <td><a href="/language/variables">Variables</a></td> <td>Variables in Perl 6</td> </tr>
</tbody>
</table>
</div>
tagbeg => 「<div class="pod-body
no-toc
">」
tagname => 「div」
tagattr => 「class="pod-body
no-toc
"」
attr => 「class」
value => 「"pod-body
no-toc
"」
0 => 「pod-body
no-toc
newline => 「
tag => 「<table class="pod-table">
<tbody>
<tr> <td><a href="/language/5to6-nutshell">5to6-nutshell</a></td> <td>Perl 5 to Perl 6, in a nutshell: How do I do what I used to do?</td> </tr> <tr> <td><a href="/language/5to6-perlfunc">5to6-perlfunc</a></td> <td>Perl 5 to Perl 6 guide - functions</td> </tr> <tr> <td><a href="/language/5to6-perlop">5to6-perlop</a></td> <td>Perl 5 to Perl 6 guide - operators</td> </tr> <tr> <td><a href="/language/5to6-perlsyn">5to6-perlsyn</a></td> <td>Perl 5 to Perl 6 guide - syntax</td> </tr> <tr> <td><a href="/language/5to6-perlvar">5to6-perlvar</a></td> <td>Perl 5 to Perl 6 guide - special variables</td> </tr> <tr> <td><a href="/language/about">About the Docs</a></td> <td>Meta-documentation</td> </tr> <tr> <td><a href="/language/classtut">Classes and Objects</a></td> <td>A tutorial for creating and using classes in Perl 6</td> </tr> <tr> <td><a href="/language/community">Community </a></td> <td>Information about the people working on and using Perl 6</td> </tr> <tr> <td><a href="/language/concurrency">Concurrency</a></td> <td>Concurrency and Asynchronous Programming</td> </tr> <tr> <td><a href="/language/containers">Containers</a></td> <td>A low-level explanation of Perl 6 containers</td> </tr> <tr> <td><a href="/language/contributors">Contributors</a></td> <td>List of contributors to Perl 6 over the years</td> </tr> <tr> <td><a href="/language/control">Control Flow</a></td> <td>Statements used to control the flow of execution</td> </tr> <tr> <td><a href="/language/unicode_entry">Entering Unicode Characters</a></td> <td>Input methods for unicode characters in editors and the shell</td> </tr> <tr> <td><a href="/language/exceptions">Exceptions</a></td> <td>Using exceptions in Perl 6</td> </tr> <tr> <td><a href="/language/experimental">Experimental Features</a></td> <td>New features for brave users</td> </tr> <tr> <td><a href="/language/faq">FAQ</a></td> <td>Frequently Asked Questions about Perl 6</td> </tr> <tr> <td><a href="/language/functions">Functions</a></td> <td>Functions and Functional Programming in Perl 6</td> </tr> <tr> <td><a href="/language/glossary">Glossary</a></td> <td>Glossary of Perl 6 terminology</td> </tr> <tr> <td><a href="/language/grammar_tutorial">Grammar Tutorial</a></td> <td>Why Grammars?</td> </tr> <tr> <td><a href="/language/grammars">Grammars</a></td> <td>Parsing and interpreting text</td> </tr> <tr> <td><a href="/language/io">Input/Output</a></td> <td>File-related operations</td> </tr> <tr> <td><a href="/language/io-guide">Input/Output The Definitive Guide</a></td> <td>Correctly use Perl 6 IO</td> </tr> <tr> <td><a href="/language/ipc">Inter-Process Communication</a></td> <td>Programs running other programs and communicating with them</td> </tr> <tr> <td><a href="/language/list">Lists, Sequences, and Arrays</a></td> <td>Positional data constructs</td> </tr> <tr> <td><a href="/language/mop">Meta-Object Protocol</a></td> <td>Introspection and the Perl 6 Object System</td> </tr> <tr> <td><a href="/language/modules-extra">Module Development Utilities</a></td> <td>What can help you write/test/improve your module(s)</td> </tr> <tr> <td><a href="/language/modules">Modules</a></td> <td>How to create, use and distribute Perl 6 modules</td> </tr> <tr> <td><a href="/language/nativecall">Native Calling Interface</a></td> <td>Call into dynamic libraries that follow the C calling convention</td> </tr> <tr> <td><a href="/language/objects">Object Orientation</a></td> <td>Object Orientation in Perl 6</td> </tr> <tr> <td><a href="/language/operators">Operators</a></td> <td>Common Perl 6 infixes, prefixes, postfixes, and more!</td> </tr> <tr> <td><a href="/language/packages">Packages</a></td> <td>Organizing and referencing namespaced program elements</td> </tr> <tr> <td><a href="/language/performance">Performance</a></td> <td>Measuring and improving run-time or compile-time performance</td> </tr> <tr> <td><a href="/language/pod">Perl 6 Pod</a></td> <td>An easy-to-use markup language</td> </tr> <tr> <td><a href="/language/haskell-to-p6">Perl 6 from Haskell - Nutshell</a></td> <td>Learning Perl 6 from Haskell, in a nutshell: What do I already know?</td> </tr> <tr> <td><a href="/language/py-nutshell">Perl 6 from Python - Nutshell</a></td> <td>Learning Perl 6 from Python, in a nutshell.</td> </tr> <tr> <td><a href="/language/rb-nutshell">Perl 6 from Ruby - Nutshell</a></td> <td>Learning Perl 6 from Ruby, in a nutshell: What do I already know?</td> </tr> <tr> <td><a href="/language/phasers">Phasers</a></td> <td>Program execution phases and corresponding phaser blocks</td> </tr> <tr> <td><a href="/language/tables">Pod 6 Tables</a></td> <td>The Good, the Bad, and the Ugly</td> </tr> <tr> <td><a href="/language/pragmas">Pragmas</a></td> <td>Special modules for special use</td> </tr> <tr> <td><a href="/language/quoting">Quoting Constructs</a></td> <td>Writing strings, word lists, and regexes in Perl 6</td> </tr> <tr> <td><a href="/language/regexes">Regexes</a></td> <td>Pattern matching against strings</td> </tr> <tr> <td><a href="/language/setbagmix">Sets, Bags, and Mixes</a></td> <td>Unordered collections of unique and weighted objects in Perl 6</td> </tr> <tr> <td><a href="/language/subscripts">Subscripts</a></td> <td>Accessing data structure elements by index or key</td> </tr> <tr> <td><a href="/language/syntax">Syntax</a></td> <td>General rules of Perl 6 syntax</td> </tr> <tr> <td><a href="/language/terms">Terms</a></td> <td>Perl 6 Terms</td> </tr> <tr> <td><a href="/language/testing">Testing</a></td> <td>Writing and running tests in Perl 6</td> </tr> <tr> <td><a href="/language/traps">Traps to avoid</a></td> <td>Traps to avoid when getting started with Perl 6</td> </tr> <tr> <td><a href="/language/typesystem">Typesystem</a></td> <td>Introduction to the type system of Perl 6</td> </tr> <tr> <td><a href="/language/unicode">Unicode</a></td> <td>Unicode Support in Perl 6</td> </tr> <tr> <td><a href="/language/unicode_texas">Unicode versus Texas symbols</a></td> <td>Unicode symbols and their Texas (ASCII) counterparts</td> </tr> <tr> <td><a href="/language/variables">Variables</a></td> <td>Variables in Perl 6</td> </tr>
</tbody>
</table>
tagbeg => 「<table class="pod-table">」
tagname => 「table」
tagattr => 「class="pod-table"」
attr => 「class」
value => 「"pod-table"」
0 => 「pod-table」
newline => 「
tag => 「<tbody>
<tr> <td><a href="/language/5to6-nutshell">5to6-nutshell</a></td> <td>Perl 5 to Perl 6, in a nutshell: How do I do what I used to do?</td> </tr> <tr> <td><a href="/language/5to6-perlfunc">5to6-perlfunc</a></td> <td>Perl 5 to Perl 6 guide - functions</td> </tr> <tr> <td><a href="/language/5to6-perlop">5to6-perlop</a></td> <td>Perl 5 to Perl 6 guide - operators</td> </tr> <tr> <td><a href="/language/5to6-perlsyn">5to6-perlsyn</a></td> <td>Perl 5 to Perl 6 guide - syntax</td> </tr> <tr> <td><a href="/language/5to6-perlvar">5to6-perlvar</a></td> <td>Perl 5 to Perl 6 guide - special variables</td> </tr> <tr> <td><a href="/language/about">About the Docs</a></td> <td>Meta-documentation</td> </tr> <tr> <td><a href="/language/classtut">Classes and Objects</a></td> <td>A tutorial for creating and using classes in Perl 6</td> </tr> <tr> <td><a href="/language/community">Community </a></td> <td>Information about the people working on and using Perl 6</td> </tr> <tr> <td><a href="/language/concurrency">Concurrency</a></td> <td>Concurrency and Asynchronous Programming</td> </tr> <tr> <td><a href="/language/containers">Containers</a></td> <td>A low-level explanation of Perl 6 containers</td> </tr> <tr> <td><a href="/language/contributors">Contributors</a></td> <td>List of contributors to Perl 6 over the years</td> </tr> <tr> <td><a href="/language/control">Control Flow</a></td> <td>Statements used to control the flow of execution</td> </tr> <tr> <td><a href="/language/unicode_entry">Entering Unicode Characters</a></td> <td>Input methods for unicode characters in editors and the shell</td> </tr> <tr> <td><a href="/language/exceptions">Exceptions</a></td> <td>Using exceptions in Perl 6</td> </tr> <tr> <td><a href="/language/experimental">Experimental Features</a></td> <td>New features for brave users</td> </tr> <tr> <td><a href="/language/faq">FAQ</a></td> <td>Frequently Asked Questions about Perl 6</td> </tr> <tr> <td><a href="/language/functions">Functions</a></td> <td>Functions and Functional Programming in Perl 6</td> </tr> <tr> <td><a href="/language/glossary">Glossary</a></td> <td>Glossary of Perl 6 terminology</td> </tr> <tr> <td><a href="/language/grammar_tutorial">Grammar Tutorial</a></td> <td>Why Grammars?</td> </tr> <tr> <td><a href="/language/grammars">Grammars</a></td> <td>Parsing and interpreting text</td> </tr> <tr> <td><a href="/language/io">Input/Output</a></td> <td>File-related operations</td> </tr> <tr> <td><a href="/language/io-guide">Input/Output The Definitive Guide</a></td> <td>Correctly use Perl 6 IO</td> </tr> <tr> <td><a href="/language/ipc">Inter-Process Communication</a></td> <td>Programs running other programs and communicating with them</td> </tr> <tr> <td><a href="/language/list">Lists, Sequences, and Arrays</a></td> <td>Positional data constructs</td> </tr> <tr> <td><a href="/language/mop">Meta-Object Protocol</a></td> <td>Introspection and the Perl 6 Object System</td> </tr> <tr> <td><a href="/language/modules-extra">Module Development Utilities</a></td> <td>What can help you write/test/improve your module(s)</td> </tr> <tr> <td><a href="/language/modules">Modules</a></td> <td>How to create, use and distribute Perl 6 modules</td> </tr> <tr> <td><a href="/language/nativecall">Native Calling Interface</a></td> <td>Call into dynamic libraries that follow the C calling convention</td> </tr> <tr> <td><a href="/language/objects">Object Orientation</a></td> <td>Object Orientation in Perl 6</td> </tr> <tr> <td><a href="/language/operators">Operators</a></td> <td>Common Perl 6 infixes, prefixes, postfixes, and more!</td> </tr> <tr> <td><a href="/language/packages">Packages</a></td> <td>Organizing and referencing namespaced program elements</td> </tr> <tr> <td><a href="/language/performance">Performance</a></td> <td>Measuring and improving run-time or compile-time performance</td> </tr> <tr> <td><a href="/language/pod">Perl 6 Pod</a></td> <td>An easy-to-use markup language</td> </tr> <tr> <td><a href="/language/haskell-to-p6">Perl 6 from Haskell - Nutshell</a></td> <td>Learning Perl 6 from Haskell, in a nutshell: What do I already know?</td> </tr> <tr> <td><a href="/language/py-nutshell">Perl 6 from Python - Nutshell</a></td> <td>Learning Perl 6 from Python, in a nutshell.</td> </tr> <tr> <td><a href="/language/rb-nutshell">Perl 6 from Ruby - Nutshell</a></td> <td>Learning Perl 6 from Ruby, in a nutshell: What do I already know?</td> </tr> <tr> <td><a href="/language/phasers">Phasers</a></td> <td>Program execution phases and corresponding phaser blocks</td> </tr> <tr> <td><a href="/language/tables">Pod 6 Tables</a></td> <td>The Good, the Bad, and the Ugly</td> </tr> <tr> <td><a href="/language/pragmas">Pragmas</a></td> <td>Special modules for special use</td> </tr> <tr> <td><a href="/language/quoting">Quoting Constructs</a></td> <td>Writing strings, word lists, and regexes in Perl 6</td> </tr> <tr> <td><a href="/language/regexes">Regexes</a></td> <td>Pattern matching against strings</td> </tr> <tr> <td><a href="/language/setbagmix">Sets, Bags, and Mixes</a></td> <td>Unordered collections of unique and weighted objects in Perl 6</td> </tr> <tr> <td><a href="/language/subscripts">Subscripts</a></td> <td>Accessing data structure elements by index or key</td> </tr> <tr> <td><a href="/language/syntax">Syntax</a></td> <td>General rules of Perl 6 syntax</td> </tr> <tr> <td><a href="/language/terms">Terms</a></td> <td>Perl 6 Terms</td> </tr> <tr> <td><a href="/language/testing">Testing</a></td> <td>Writing and running tests in Perl 6</td> </tr> <tr> <td><a href="/language/traps">Traps to avoid</a></td> <td>Traps to avoid when getting started with Perl 6</td> </tr> <tr> <td><a href="/language/typesystem">Typesystem</a></td> <td>Introduction to the type system of Perl 6</td> </tr> <tr> <td><a href="/language/unicode">Unicode</a></td> <td>Unicode Support in Perl 6</td> </tr> <tr> <td><a href="/language/unicode_texas">Unicode versus Texas symbols</a></td> <td>Unicode symbols and their Texas (ASCII) counterparts</td> </tr> <tr> <td><a href="/language/variables">Variables</a></td> <td>Variables in Perl 6</td> </tr>
</tbody>
tagbeg => 「<tbody>」
tagname => 「tbody」
newline => 「
tag => 「<tr> <td><a href="/language/5to6-nutshell">5to6-nutshell</a></td> <td>Perl 5 to Perl 6, in a nutshell: How do I do what I used to do?</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/5to6-nutshell">5to6-nutshell</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/5to6-nutshell">5to6-nutshell</a>」
tagbeg => 「<a href="/language/5to6-nutshell">」
tagname => 「a」
tagattr => 「href="/language/5to6-nutshell"」
attr => 「href」
value => 「"/language/5to6-nutshell"」
0 => 「/language/5to6-nutshell」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Perl 5 to Perl 6, in a nutshell: How do I do what I used to do?</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/5to6-perlfunc">5to6-perlfunc</a></td> <td>Perl 5 to Perl 6 guide - functions</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/5to6-perlfunc">5to6-perlfunc</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/5to6-perlfunc">5to6-perlfunc</a>」
tagbeg => 「<a href="/language/5to6-perlfunc">」
tagname => 「a」
tagattr => 「href="/language/5to6-perlfunc"」
attr => 「href」
value => 「"/language/5to6-perlfunc"」
0 => 「/language/5to6-perlfunc」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Perl 5 to Perl 6 guide - functions</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/5to6-perlop">5to6-perlop</a></td> <td>Perl 5 to Perl 6 guide - operators</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/5to6-perlop">5to6-perlop</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/5to6-perlop">5to6-perlop</a>」
tagbeg => 「<a href="/language/5to6-perlop">」
tagname => 「a」
tagattr => 「href="/language/5to6-perlop"」
attr => 「href」
value => 「"/language/5to6-perlop"」
0 => 「/language/5to6-perlop」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Perl 5 to Perl 6 guide - operators</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/5to6-perlsyn">5to6-perlsyn</a></td> <td>Perl 5 to Perl 6 guide - syntax</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/5to6-perlsyn">5to6-perlsyn</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/5to6-perlsyn">5to6-perlsyn</a>」
tagbeg => 「<a href="/language/5to6-perlsyn">」
tagname => 「a」
tagattr => 「href="/language/5to6-perlsyn"」
attr => 「href」
value => 「"/language/5to6-perlsyn"」
0 => 「/language/5to6-perlsyn」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Perl 5 to Perl 6 guide - syntax</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/5to6-perlvar">5to6-perlvar</a></td> <td>Perl 5 to Perl 6 guide - special variables</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/5to6-perlvar">5to6-perlvar</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/5to6-perlvar">5to6-perlvar</a>」
tagbeg => 「<a href="/language/5to6-perlvar">」
tagname => 「a」
tagattr => 「href="/language/5to6-perlvar"」
attr => 「href」
value => 「"/language/5to6-perlvar"」
0 => 「/language/5to6-perlvar」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Perl 5 to Perl 6 guide - special variables</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/about">About the Docs</a></td> <td>Meta-documentation</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/about">About the Docs</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/about">About the Docs</a>」
tagbeg => 「<a href="/language/about">」
tagname => 「a」
tagattr => 「href="/language/about"」
attr => 「href」
value => 「"/language/about"」
0 => 「/language/about」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Meta-documentation</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/classtut">Classes and Objects</a></td> <td>A tutorial for creating and using classes in Perl 6</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/classtut">Classes and Objects</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/classtut">Classes and Objects</a>」
tagbeg => 「<a href="/language/classtut">」
tagname => 「a」
tagattr => 「href="/language/classtut"」
attr => 「href」
value => 「"/language/classtut"」
0 => 「/language/classtut」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>A tutorial for creating and using classes in Perl 6</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/community">Community </a></td> <td>Information about the people working on and using Perl 6</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/community">Community </a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/community">Community </a>」
tagbeg => 「<a href="/language/community">」
tagname => 「a」
tagattr => 「href="/language/community"」
attr => 「href」
value => 「"/language/community"」
0 => 「/language/community」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Information about the people working on and using Perl 6</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/concurrency">Concurrency</a></td> <td>Concurrency and Asynchronous Programming</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/concurrency">Concurrency</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/concurrency">Concurrency</a>」
tagbeg => 「<a href="/language/concurrency">」
tagname => 「a」
tagattr => 「href="/language/concurrency"」
attr => 「href」
value => 「"/language/concurrency"」
0 => 「/language/concurrency」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Concurrency and Asynchronous Programming</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/containers">Containers</a></td> <td>A low-level explanation of Perl 6 containers</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/containers">Containers</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/containers">Containers</a>」
tagbeg => 「<a href="/language/containers">」
tagname => 「a」
tagattr => 「href="/language/containers"」
attr => 「href」
value => 「"/language/containers"」
0 => 「/language/containers」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>A low-level explanation of Perl 6 containers</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/contributors">Contributors</a></td> <td>List of contributors to Perl 6 over the years</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/contributors">Contributors</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/contributors">Contributors</a>」
tagbeg => 「<a href="/language/contributors">」
tagname => 「a」
tagattr => 「href="/language/contributors"」
attr => 「href」
value => 「"/language/contributors"」
0 => 「/language/contributors」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>List of contributors to Perl 6 over the years</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/control">Control Flow</a></td> <td>Statements used to control the flow of execution</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/control">Control Flow</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/control">Control Flow</a>」
tagbeg => 「<a href="/language/control">」
tagname => 「a」
tagattr => 「href="/language/control"」
attr => 「href」
value => 「"/language/control"」
0 => 「/language/control」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Statements used to control the flow of execution</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/unicode_entry">Entering Unicode Characters</a></td> <td>Input methods for unicode characters in editors and the shell</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/unicode_entry">Entering Unicode Characters</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/unicode_entry">Entering Unicode Characters</a>」
tagbeg => 「<a href="/language/unicode_entry">」
tagname => 「a」
tagattr => 「href="/language/unicode_entry"」
attr => 「href」
value => 「"/language/unicode_entry"」
0 => 「/language/unicode_entry」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Input methods for unicode characters in editors and the shell</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/exceptions">Exceptions</a></td> <td>Using exceptions in Perl 6</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/exceptions">Exceptions</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/exceptions">Exceptions</a>」
tagbeg => 「<a href="/language/exceptions">」
tagname => 「a」
tagattr => 「href="/language/exceptions"」
attr => 「href」
value => 「"/language/exceptions"」
0 => 「/language/exceptions」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Using exceptions in Perl 6</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/experimental">Experimental Features</a></td> <td>New features for brave users</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/experimental">Experimental Features</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/experimental">Experimental Features</a>」
tagbeg => 「<a href="/language/experimental">」
tagname => 「a」
tagattr => 「href="/language/experimental"」
attr => 「href」
value => 「"/language/experimental"」
0 => 「/language/experimental」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>New features for brave users</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/faq">FAQ</a></td> <td>Frequently Asked Questions about Perl 6</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/faq">FAQ</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/faq">FAQ</a>」
tagbeg => 「<a href="/language/faq">」
tagname => 「a」
tagattr => 「href="/language/faq"」
attr => 「href」
value => 「"/language/faq"」
0 => 「/language/faq」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Frequently Asked Questions about Perl 6</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/functions">Functions</a></td> <td>Functions and Functional Programming in Perl 6</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/functions">Functions</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/functions">Functions</a>」
tagbeg => 「<a href="/language/functions">」
tagname => 「a」
tagattr => 「href="/language/functions"」
attr => 「href」
value => 「"/language/functions"」
0 => 「/language/functions」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Functions and Functional Programming in Perl 6</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/glossary">Glossary</a></td> <td>Glossary of Perl 6 terminology</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/glossary">Glossary</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/glossary">Glossary</a>」
tagbeg => 「<a href="/language/glossary">」
tagname => 「a」
tagattr => 「href="/language/glossary"」
attr => 「href」
value => 「"/language/glossary"」
0 => 「/language/glossary」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Glossary of Perl 6 terminology</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/grammar_tutorial">Grammar Tutorial</a></td> <td>Why Grammars?</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/grammar_tutorial">Grammar Tutorial</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/grammar_tutorial">Grammar Tutorial</a>」
tagbeg => 「<a href="/language/grammar_tutorial">」
tagname => 「a」
tagattr => 「href="/language/grammar_tutorial"」
attr => 「href」
value => 「"/language/grammar_tutorial"」
0 => 「/language/grammar_tutorial」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Why Grammars?</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/grammars">Grammars</a></td> <td>Parsing and interpreting text</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/grammars">Grammars</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/grammars">Grammars</a>」
tagbeg => 「<a href="/language/grammars">」
tagname => 「a」
tagattr => 「href="/language/grammars"」
attr => 「href」
value => 「"/language/grammars"」
0 => 「/language/grammars」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Parsing and interpreting text</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/io">Input/Output</a></td> <td>File-related operations</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/io">Input/Output</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/io">Input/Output</a>」
tagbeg => 「<a href="/language/io">」
tagname => 「a」
tagattr => 「href="/language/io"」
attr => 「href」
value => 「"/language/io"」
0 => 「/language/io」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>File-related operations</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/io-guide">Input/Output The Definitive Guide</a></td> <td>Correctly use Perl 6 IO</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/io-guide">Input/Output The Definitive Guide</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/io-guide">Input/Output The Definitive Guide</a>」
tagbeg => 「<a href="/language/io-guide">」
tagname => 「a」
tagattr => 「href="/language/io-guide"」
attr => 「href」
value => 「"/language/io-guide"」
0 => 「/language/io-guide」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Correctly use Perl 6 IO</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/ipc">Inter-Process Communication</a></td> <td>Programs running other programs and communicating with them</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/ipc">Inter-Process Communication</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/ipc">Inter-Process Communication</a>」
tagbeg => 「<a href="/language/ipc">」
tagname => 「a」
tagattr => 「href="/language/ipc"」
attr => 「href」
value => 「"/language/ipc"」
0 => 「/language/ipc」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Programs running other programs and communicating with them</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/list">Lists, Sequences, and Arrays</a></td> <td>Positional data constructs</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/list">Lists, Sequences, and Arrays</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/list">Lists, Sequences, and Arrays</a>」
tagbeg => 「<a href="/language/list">」
tagname => 「a」
tagattr => 「href="/language/list"」
attr => 「href」
value => 「"/language/list"」
0 => 「/language/list」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Positional data constructs</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/mop">Meta-Object Protocol</a></td> <td>Introspection and the Perl 6 Object System</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/mop">Meta-Object Protocol</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/mop">Meta-Object Protocol</a>」
tagbeg => 「<a href="/language/mop">」
tagname => 「a」
tagattr => 「href="/language/mop"」
attr => 「href」
value => 「"/language/mop"」
0 => 「/language/mop」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Introspection and the Perl 6 Object System</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/modules-extra">Module Development Utilities</a></td> <td>What can help you write/test/improve your module(s)</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/modules-extra">Module Development Utilities</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/modules-extra">Module Development Utilities</a>」
tagbeg => 「<a href="/language/modules-extra">」
tagname => 「a」
tagattr => 「href="/language/modules-extra"」
attr => 「href」
value => 「"/language/modules-extra"」
0 => 「/language/modules-extra」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>What can help you write/test/improve your module(s)</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/modules">Modules</a></td> <td>How to create, use and distribute Perl 6 modules</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/modules">Modules</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/modules">Modules</a>」
tagbeg => 「<a href="/language/modules">」
tagname => 「a」
tagattr => 「href="/language/modules"」
attr => 「href」
value => 「"/language/modules"」
0 => 「/language/modules」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>How to create, use and distribute Perl 6 modules</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/nativecall">Native Calling Interface</a></td> <td>Call into dynamic libraries that follow the C calling convention</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/nativecall">Native Calling Interface</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/nativecall">Native Calling Interface</a>」
tagbeg => 「<a href="/language/nativecall">」
tagname => 「a」
tagattr => 「href="/language/nativecall"」
attr => 「href」
value => 「"/language/nativecall"」
0 => 「/language/nativecall」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Call into dynamic libraries that follow the C calling convention</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/objects">Object Orientation</a></td> <td>Object Orientation in Perl 6</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/objects">Object Orientation</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/objects">Object Orientation</a>」
tagbeg => 「<a href="/language/objects">」
tagname => 「a」
tagattr => 「href="/language/objects"」
attr => 「href」
value => 「"/language/objects"」
0 => 「/language/objects」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Object Orientation in Perl 6</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/operators">Operators</a></td> <td>Common Perl 6 infixes, prefixes, postfixes, and more!</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/operators">Operators</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/operators">Operators</a>」
tagbeg => 「<a href="/language/operators">」
tagname => 「a」
tagattr => 「href="/language/operators"」
attr => 「href」
value => 「"/language/operators"」
0 => 「/language/operators」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Common Perl 6 infixes, prefixes, postfixes, and more!</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/packages">Packages</a></td> <td>Organizing and referencing namespaced program elements</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/packages">Packages</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/packages">Packages</a>」
tagbeg => 「<a href="/language/packages">」
tagname => 「a」
tagattr => 「href="/language/packages"」
attr => 「href」
value => 「"/language/packages"」
0 => 「/language/packages」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Organizing and referencing namespaced program elements</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/performance">Performance</a></td> <td>Measuring and improving run-time or compile-time performance</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/performance">Performance</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/performance">Performance</a>」
tagbeg => 「<a href="/language/performance">」
tagname => 「a」
tagattr => 「href="/language/performance"」
attr => 「href」
value => 「"/language/performance"」
0 => 「/language/performance」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Measuring and improving run-time or compile-time performance</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/pod">Perl 6 Pod</a></td> <td>An easy-to-use markup language</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/pod">Perl 6 Pod</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/pod">Perl 6 Pod</a>」
tagbeg => 「<a href="/language/pod">」
tagname => 「a」
tagattr => 「href="/language/pod"」
attr => 「href」
value => 「"/language/pod"」
0 => 「/language/pod」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>An easy-to-use markup language</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/haskell-to-p6">Perl 6 from Haskell - Nutshell</a></td> <td>Learning Perl 6 from Haskell, in a nutshell: What do I already know?</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/haskell-to-p6">Perl 6 from Haskell - Nutshell</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/haskell-to-p6">Perl 6 from Haskell - Nutshell</a>」
tagbeg => 「<a href="/language/haskell-to-p6">」
tagname => 「a」
tagattr => 「href="/language/haskell-to-p6"」
attr => 「href」
value => 「"/language/haskell-to-p6"」
0 => 「/language/haskell-to-p6」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Learning Perl 6 from Haskell, in a nutshell: What do I already know?</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/py-nutshell">Perl 6 from Python - Nutshell</a></td> <td>Learning Perl 6 from Python, in a nutshell.</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/py-nutshell">Perl 6 from Python - Nutshell</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/py-nutshell">Perl 6 from Python - Nutshell</a>」
tagbeg => 「<a href="/language/py-nutshell">」
tagname => 「a」
tagattr => 「href="/language/py-nutshell"」
attr => 「href」
value => 「"/language/py-nutshell"」
0 => 「/language/py-nutshell」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Learning Perl 6 from Python, in a nutshell.</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/rb-nutshell">Perl 6 from Ruby - Nutshell</a></td> <td>Learning Perl 6 from Ruby, in a nutshell: What do I already know?</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/rb-nutshell">Perl 6 from Ruby - Nutshell</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/rb-nutshell">Perl 6 from Ruby - Nutshell</a>」
tagbeg => 「<a href="/language/rb-nutshell">」
tagname => 「a」
tagattr => 「href="/language/rb-nutshell"」
attr => 「href」
value => 「"/language/rb-nutshell"」
0 => 「/language/rb-nutshell」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Learning Perl 6 from Ruby, in a nutshell: What do I already know?</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/phasers">Phasers</a></td> <td>Program execution phases and corresponding phaser blocks</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/phasers">Phasers</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/phasers">Phasers</a>」
tagbeg => 「<a href="/language/phasers">」
tagname => 「a」
tagattr => 「href="/language/phasers"」
attr => 「href」
value => 「"/language/phasers"」
0 => 「/language/phasers」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Program execution phases and corresponding phaser blocks</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/tables">Pod 6 Tables</a></td> <td>The Good, the Bad, and the Ugly</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/tables">Pod 6 Tables</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/tables">Pod 6 Tables</a>」
tagbeg => 「<a href="/language/tables">」
tagname => 「a」
tagattr => 「href="/language/tables"」
attr => 「href」
value => 「"/language/tables"」
0 => 「/language/tables」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>The Good, the Bad, and the Ugly</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/pragmas">Pragmas</a></td> <td>Special modules for special use</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/pragmas">Pragmas</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/pragmas">Pragmas</a>」
tagbeg => 「<a href="/language/pragmas">」
tagname => 「a」
tagattr => 「href="/language/pragmas"」
attr => 「href」
value => 「"/language/pragmas"」
0 => 「/language/pragmas」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Special modules for special use</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/quoting">Quoting Constructs</a></td> <td>Writing strings, word lists, and regexes in Perl 6</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/quoting">Quoting Constructs</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/quoting">Quoting Constructs</a>」
tagbeg => 「<a href="/language/quoting">」
tagname => 「a」
tagattr => 「href="/language/quoting"」
attr => 「href」
value => 「"/language/quoting"」
0 => 「/language/quoting」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Writing strings, word lists, and regexes in Perl 6</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/regexes">Regexes</a></td> <td>Pattern matching against strings</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/regexes">Regexes</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/regexes">Regexes</a>」
tagbeg => 「<a href="/language/regexes">」
tagname => 「a」
tagattr => 「href="/language/regexes"」
attr => 「href」
value => 「"/language/regexes"」
0 => 「/language/regexes」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Pattern matching against strings</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/setbagmix">Sets, Bags, and Mixes</a></td> <td>Unordered collections of unique and weighted objects in Perl 6</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/setbagmix">Sets, Bags, and Mixes</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/setbagmix">Sets, Bags, and Mixes</a>」
tagbeg => 「<a href="/language/setbagmix">」
tagname => 「a」
tagattr => 「href="/language/setbagmix"」
attr => 「href」
value => 「"/language/setbagmix"」
0 => 「/language/setbagmix」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Unordered collections of unique and weighted objects in Perl 6</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/subscripts">Subscripts</a></td> <td>Accessing data structure elements by index or key</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/subscripts">Subscripts</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/subscripts">Subscripts</a>」
tagbeg => 「<a href="/language/subscripts">」
tagname => 「a」
tagattr => 「href="/language/subscripts"」
attr => 「href」
value => 「"/language/subscripts"」
0 => 「/language/subscripts」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Accessing data structure elements by index or key</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/syntax">Syntax</a></td> <td>General rules of Perl 6 syntax</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/syntax">Syntax</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/syntax">Syntax</a>」
tagbeg => 「<a href="/language/syntax">」
tagname => 「a」
tagattr => 「href="/language/syntax"」
attr => 「href」
value => 「"/language/syntax"」
0 => 「/language/syntax」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>General rules of Perl 6 syntax</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/terms">Terms</a></td> <td>Perl 6 Terms</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/terms">Terms</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/terms">Terms</a>」
tagbeg => 「<a href="/language/terms">」
tagname => 「a」
tagattr => 「href="/language/terms"」
attr => 「href」
value => 「"/language/terms"」
0 => 「/language/terms」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Perl 6 Terms</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/testing">Testing</a></td> <td>Writing and running tests in Perl 6</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/testing">Testing</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/testing">Testing</a>」
tagbeg => 「<a href="/language/testing">」
tagname => 「a」
tagattr => 「href="/language/testing"」
attr => 「href」
value => 「"/language/testing"」
0 => 「/language/testing」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Writing and running tests in Perl 6</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/traps">Traps to avoid</a></td> <td>Traps to avoid when getting started with Perl 6</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/traps">Traps to avoid</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/traps">Traps to avoid</a>」
tagbeg => 「<a href="/language/traps">」
tagname => 「a」
tagattr => 「href="/language/traps"」
attr => 「href」
value => 「"/language/traps"」
0 => 「/language/traps」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Traps to avoid when getting started with Perl 6</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/typesystem">Typesystem</a></td> <td>Introduction to the type system of Perl 6</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/typesystem">Typesystem</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/typesystem">Typesystem</a>」
tagbeg => 「<a href="/language/typesystem">」
tagname => 「a」
tagattr => 「href="/language/typesystem"」
attr => 「href」
value => 「"/language/typesystem"」
0 => 「/language/typesystem」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Introduction to the type system of Perl 6</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/unicode">Unicode</a></td> <td>Unicode Support in Perl 6</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/unicode">Unicode</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/unicode">Unicode</a>」
tagbeg => 「<a href="/language/unicode">」
tagname => 「a」
tagattr => 「href="/language/unicode"」
attr => 「href」
value => 「"/language/unicode"」
0 => 「/language/unicode」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Unicode Support in Perl 6</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/unicode_texas">Unicode versus Texas symbols</a></td> <td>Unicode symbols and their Texas (ASCII) counterparts</td> </tr> 」
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/unicode_texas">Unicode versus Texas symbols</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/unicode_texas">Unicode versus Texas symbols</a>」
tagbeg => 「<a href="/language/unicode_texas">」
tagname => 「a」
tagattr => 「href="/language/unicode_texas"」
attr => 「href」
value => 「"/language/unicode_texas"」
0 => 「/language/unicode_texas」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Unicode symbols and their Texas (ASCII) counterparts</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「 」
newline => 「」
tag => 「<tr> <td><a href="/language/variables">Variables</a></td> <td>Variables in Perl 6</td> </tr>
tagbeg => 「<tr>」
tagname => 「tr」
newline => 「 」
tag => 「<td><a href="/language/variables">Variables</a></td> 」
tagbeg => 「<td>」
tagname => 「td」
newline => 「」
tag => 「<a href="/language/variables">Variables</a>」
tagbeg => 「<a href="/language/variables">」
tagname => 「a」
tagattr => 「href="/language/variables"」
attr => 「href」
value => 「"/language/variables"」
0 => 「/language/variables」
tagname => 「a」
newline => 「」
newline => 「」
newline => 「」
tagname => 「td」
newline => 「 」
newline => 「」
tag => 「<td>Variables in Perl 6</td> 」
tagbeg => 「<td>」
tagname => 「td」
tagname => 「td」
newline => 「 」
newline => 「」
newline => 「」
tagname => 「tr」
newline => 「
newline => 「」
newline => 「」
tagname => 「tbody」
newline => 「
newline => 「」
newline => 「」
tagname => 「table」
newline => 「
newline => 「」
newline => 「」
tagname => 「div」
newline => 「
newline => 「」
newline => 「」
tagname => 「div」
newline => 「
newline => 「」
tag => 「<footer class="pretty-box yellow">
<p>
</p>
<p>
</p>
</footer>
tagbeg => 「<footer class="pretty-box yellow">」
tagname => 「footer」
tagattr => 「class="pretty-box yellow"」
attr => 「class」
value => 「"pretty-box yellow"」
0 => 「pretty-box yellow」
newline => 「
tag => 「<p>
</p>
tagbeg => 「<p>」
tagname => 「p」
tagname => 「p」
newline => 「
newline => 「」
tag => 「<p>
</p>
tagbeg => 「<p>」
tagname => 「p」
tagname => 「p」
newline => 「
newline => 「」
newline => 「」
tagname => 「footer」
newline => 「
newline => 「」
tag => 「<script type="text/javascript" src="/js/jquery-3.1.1.min.js?v=1"></script>
tagbeg => 「<script type="text/javascript" src="/js/jquery-3.1.1.min.js?v=1">」
tagname => 「script」
tagattr => 「type="text/javascript"」
attr => 「type」
value => 「"text/javascript"」
0 => 「text/javascript」
tagattr => 「src="/js/jquery-3.1.1.min.js?v=1"」
attr => 「src」
value => 「"/js/jquery-3.1.1.min.js?v=1"」
0 => 「/js/jquery-3.1.1.min.js?v=1」
tagname => 「script」
newline => 「
newline => 「」
tag => 「<script type="text/javascript" src="/js/jquery-ui.min.js?v=1"></script>
tagbeg => 「<script type="text/javascript" src="/js/jquery-ui.min.js?v=1">」
tagname => 「script」
tagattr => 「type="text/javascript"」
attr => 「type」
value => 「"text/javascript"」
0 => 「text/javascript」
tagattr => 「src="/js/jquery-ui.min.js?v=1"」
attr => 「src」
value => 「"/js/jquery-ui.min.js?v=1"」
0 => 「/js/jquery-ui.min.js?v=1」
tagname => 「script」
newline => 「
newline => 「」
tag => 「<script type="text/javascript" src="/js/search.js?v=2"></script>
tagbeg => 「<script type="text/javascript" src="/js/search.js?v=2">」
tagname => 「script」
tagattr => 「type="text/javascript"」
attr => 「type」
value => 「"text/javascript"」
0 => 「text/javascript」
tagattr => 「src="/js/search.js?v=2"」
attr => 「src」
value => 「"/js/search.js?v=2"」
0 => 「/js/search.js?v=2」
tagname => 「script」
newline => 「
newline => 「」
tag => 「<script type="text/javascript" src="/js/main.js?v=2"></script>
tagbeg => 「<script type="text/javascript" src="/js/main.js?v=2">」
tagname => 「script」
tagattr => 「type="text/javascript"」
attr => 「type」
value => 「"text/javascript"」
0 => 「text/javascript」
tagattr => 「src="/js/main.js?v=2"」
attr => 「src」
value => 「"/js/main.js?v=2"」
0 => 「/js/main.js?v=2」
tagname => 「script」
newline => 「
newline => 「」
newline => 「」
tagname => 「body」
newline => 「
newline => 「」
newline => 「」
tagname => 「html」
newline => 「
newline => 「」
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment