Skip to content

Commit c701f67

Browse files
committed
Perlito5 - grammar - alfanumeric quoting delimiters
1 parent 171ea16 commit c701f67

File tree

4 files changed

+38
-339
lines changed

4 files changed

+38
-339
lines changed

TODO-perlito5

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,19 @@ TODO list for Perlito5
233233
' $step++ < $steps '
234234
Can't find string terminator '>' anywhere before EOF
235235

236+
-- from moritz, Schwern and others at
237+
http://stackoverflow.com/questions/161872/hidden-features-of-perl
238+
239+
- you can use letters as delimiters
240+
241+
$ perl -Mstrict -wle 'print q bJet another perl hacker.b'
242+
Jet another perl hacker.
243+
244+
Likewise you can write regular expressions:
245+
246+
m xabcx
247+
# same as m/abc/
248+
236249

237250

238251
* Perl5 backend
@@ -464,17 +477,7 @@ TODO list for Perlito5
464477
$ perl -lwe '*4 = sub { print "yes" }; 4->()'
465478
yes
466479

467-
- you can use letters as delimiters
468-
469-
$ perl -Mstrict -wle 'print q bJet another perl hacker.b'
470-
Jet another perl hacker.
471-
472-
Likewise you can write regular expressions:
473-
474-
m xabcx
475-
# same as m/abc/
476-
477-
The "desperation mode" of Perl's loop control constructs which causes them to look up the stack to find a matching label allows some curious behaviors which Test::More takes advantage of, for better or worse.
480+
-- The "desperation mode" of Perl's loop control constructs which causes them to look up the stack to find a matching label allows some curious behaviors which Test::More takes advantage of, for better or worse.
478481

479482
SKIP: {
480483
skip() if $something;

0 commit comments

Comments
 (0)