@@ -221,8 +221,7 @@ of comment
221
221
say 'code again';
222
222
= end code
223
223
224
- X < identifier >
225
- = head2 Identifiers
224
+ = head2 X < Identifiers|identifier, identifiers >
226
225
227
226
Identifiers are grammatical building blocks that may be used to give a name
228
227
to entities/objects such as constants, variables (e.g. Scalars) and routines
@@ -308,7 +307,9 @@ generates unique variants of that identifier.
308
307
These strings have the form C < :key<value> > , wherein C < key > I < or > C < value > are
309
308
optional; that is, after the colon that separates it from a regular identifier,
310
309
there will be a C < key > and/or a quoting bracketing construct such as C « < > » , C < « » >
311
- or C < [' '] > which quotes one or more arbitrary characters C < value > :
310
+ or C < [' '] > which quotes one or more arbitrary characters C < value > : N < Starting
311
+ with Perl 6 language version 6.d, colon pairs with C < sym > as the C < key >
312
+ (e.g. C « :sym<foo> » ) are reserved for possible future use. >
312
313
313
314
= begin code :skip-test<Identifiers good and bad>
314
315
# exemplary valid extended identifiers:
@@ -323,8 +324,6 @@ party:16sweet
323
324
party:!a # ...and neither is !a
324
325
party:$a # ...nor $a
325
326
= end code
326
- N < Starting with Perl 6 language version 6.d, colon pairs with C < sym > as the
327
- C < key > (e.g. C « :sym<foo> » ) are reserved for possible future use.>
328
327
329
328
In an extended identifier, the postfix string is considered an integral part of
330
329
the name, so C < infix:<+> > and C < infix:<-> > are two different operators. The
0 commit comments