@@ -418,7 +418,7 @@ okt/dec/hex range, alternate syntax without the zero is preferred
418
418
first positional submatch, there is **`$1`**, **`$2`**, ... too
419
419
(don't stops at **`$9`** like Perl 5), alias to
420
420
[**`$()[0]`**](#round-brackets-var) and
421
- [**`$/[0]`**](#slash-var), P5s $0 is
421
+ [**`$/[0]`**](#slash-var), Perl 5: *\$0* is
422
422
[**\$\*EXECUTABLE\_NAME**](#EXECUTABLE-NAME-global-var)
423
423
424
424
<a id="colon"/><a id="colon-adverb"/>
@@ -963,12 +963,12 @@ second block/expression, if first do succeed, see also:
963
963
964
964
<a id="anon"/>
965
965
**anon**
966
- *[«scope declarator»](appendix-b-grouped.html#scope-declarator)* &mdash
966
+ *[«scope declarator»](appendix-b-grouped.html#scope-declarator)* —
967
967
introduces names that aren't to be stored anywhere (anonymous)
968
968
969
969
<a id="Any"/><a id="Any-type"/>
970
970
**Any**
971
- *[«undefined value type»](appendix-b-grouped.html#undefined-types)* &mdash
971
+ *[«undefined value type»](appendix-b-grouped.html#undefined-types)* —
972
972
Perl 6 object (default *[routine](appendix-g-glossary.html#routine)*
973
973
*[parameter](appendix-g-glossary.html#parameter)* type, excludes
974
974
*[junctions](appendix-g-glossary.html#junction)*)
@@ -984,12 +984,12 @@ following list) is true in bool context, see also:
984
984
<a id="ARGFILES-global-var"/>
985
985
**$\*ARGFILES**
986
986
*[«special var»](appendix-b-grouped.html#global-variables)* —
987
- magic command-line input handle, is ARGV in P5
987
+ magic command-line input handle, in Perl 5: *ARGV*
988
988
989
989
<a id="ARGS-global-var"/>
990
990
**@\*ARGS**
991
991
*[«special var»](appendix-b-grouped.html#global-variables)* —
992
- arguments (parameter) to a program (script), is @ARGV in P5
992
+ arguments (parameter) to a program (script), in Perl 5: *@ARGV*
993
993
994
994
<a id="args"/>
995
995
**args**
@@ -1180,7 +1180,7 @@ raw binary data
1180
1180
<a id="bytes"/>
1181
1181
**bytes**
1182
1182
*«string method»* —
1183
- number of bytes (a sort of P5 's *length*)
1183
+ number of bytes (a sort of Perl 5 's *length*)
1184
1184
1185
1185
<a id="bytes-modifier"/>
1186
1186
**:bytes**
@@ -1773,7 +1773,7 @@ A mapping of Enums with no duplicate keys
1773
1773
<a id="ENV-global-var"/>
1774
1774
**%\*ENV**
1775
1775
*[«special var»](appendix-b-grouped.html#global-variables)* —
1776
- environment variables (of the shell), is *%ENV* in P5
1776
+ environment variables (of the shell), in Perl 5: *%ENV*
1777
1777
1778
1778
<a id="eq"/><a id="eq-op"/>
1779
1779
**eq**
@@ -1943,7 +1943,7 @@ tests **[$\_](#context-var)**
1943
1943
against two values, flip flop operator in the style of awk, can
1944
1944
test the right operand and become **[False](#False)**
1945
1945
on the same evaluation it became **[True](#True)**
1946
- in P5 .. in scalar context
1946
+ in Perl 5 *..* in scalar context
1947
1947
1948
1948
<a id="fff"/><a id="fff-op"/>
1949
1949
**[fff](tablet-4-operators.html#flipflop)**
@@ -1953,7 +1953,8 @@ against two values, flip flop operator in the style of sed, after
1953
1953
became **[True](#True)**
1954
1954
(**[$\_](#context-op)** is larger then left value),
1955
1955
right side will be tested during next loop
1956
- *[iteration](appendix-g-glossary.html#interation)*, in P5 *...* in scalar context
1956
+ *[iteration](appendix-g-glossary.html#interation)*, in Perl 5 *...* in
1957
+ *[scalar context](appendix-g-glossary.html#scalar-contex)*
1957
1958
1958
1959
<a id="FILE-compiler-var"/>
1959
1960
**$?FILE**
@@ -2316,12 +2317,12 @@ just import definitions from an already loaded module (see
2316
2317
**\$\*IN**
2317
2318
*[«special var»](appendix-b-grouped.html#global-variables)* —
2318
2319
file handle for thestandard input (command line mostly), see also
2319
- **[$\*OUT](#OUT-global-var)**, is STDIN in P5
2320
+ **[$\*OUT](#OUT-global-var)**, in Perl 5: *STDIN*
2320
2321
2321
2322
<a id="INC-global-var"/>
2322
2323
**\@\*INC**
2323
2324
*[«special var»](appendix-b-grouped.html#global-variables)* —
2324
- include pathes (but not for standard library modules), is @INC in P5
2325
+ include pathes (but not for standard library modules), in Perl 5: *@INC*
2325
2326
2326
2327
<a id="index"/>
2327
2328
**index** *(string method)* —
@@ -2583,7 +2584,7 @@ operator in *[string
2583
2584
context](tablet-4-operators.html#string-context)*,
2584
2585
leg stands for lower/equal/greater, **[cmp](#cmp)**
2585
2586
is the more general form, **[<=\>](#spaceship-op)**
2586
- does same in [numerical context](#numerical-context), is *cmp* in P5
2587
+ does same in [numerical context](#numerical-context), in Perl 5: *cmp*
2587
2588
2588
2589
<a id="let"/>
2589
2590
**let** —
@@ -2984,7 +2985,7 @@ introduces **[package](#package)**-scoped names for variables and
2984
2985
**\$\*OUT**
2985
2986
*[«special var»](appendix-b-grouped.html#global-variables)* —
2986
2987
file handle for standard output (command line mostly), see also
2987
- **[$\*IN](#IN-global-var)**, is STDOUT in P5
2988
+ **[$\*IN](#IN-global-var)**, in Perl 5: *STDOUT*
2988
2989
2989
2990
<a id="ov-modifier"/>
2990
2991
**:ov** *[«regex modifier»](appendix-b-grouped.html#regex-modifier)* —
@@ -3924,7 +3925,7 @@ a symbol table hash (package, module, class, lexpad, etc)
3924
3925
**stat**
3925
3926
*[«test method»](appendix-b-grouped.html#test-methods)* —
3926
3927
available information about a file or link
3927
- (call `stat :link` as former lstat)
3928
+ (call `stat :link` instead of Perl 5: * lstat* )
3928
3929
3929
3930
<a id="state"/>
3930
3931
**state**
0 commit comments