major pod update from Tom Christiansen
[p5sagit/p5-mst-13.2.git] / pod / perlsyn.pod
CommitLineData
a0d0e21e 1=head1 NAME
2
3perlsyn - Perl syntax
4
5=head1 DESCRIPTION
6
7A Perl script consists of a sequence of declarations and statements.
8The only things that need to be declared in Perl are report formats
9and subroutines. See the sections below for more information on those
10declarations. All uninitialized user-created objects are assumed to
f86cebdf 11start with a C<null> or C<0> value until they are defined by some explicit
a0d0e21e 12operation such as assignment. (Though you can get warnings about the
13use of undefined values if you like.) The sequence of statements is
14executed just once, unlike in B<sed> and B<awk> scripts, where the
15sequence of statements is executed for each input line. While this means
16that you must explicitly loop over the lines of your input file (or
17files), it also means you have much more control over which files and
18which lines you look at. (Actually, I'm lying--it is possible to do an
19implicit loop with either the B<-n> or B<-p> switch. It's just not the
20mandatory default like it is in B<sed> and B<awk>.)
21
4633a7c4 22=head2 Declarations
23
f00f6914 24Perl is, for the most part, a free-form language. (The only exception
25to this is format declarations, for obvious reasons.) Text from a
26C<"#"> character until the end of the line is a comment, and is
27ignored. If you attempt to use C</* */> C-style comments, it will be
28interpreted either as division or pattern matching, depending on the
29context, and C++ C<//> comments just look like a null regular
30expression, so don't do that.
a0d0e21e 31
32A declaration can be put anywhere a statement can, but has no effect on
33the execution of the primary sequence of statements--declarations all
34take effect at compile time. Typically all the declarations are put at
54310121 35the beginning or the end of the script. However, if you're using
f86cebdf 36lexically-scoped private variables created with C<my()>, you'll have to make sure
4633a7c4 37your format or subroutine definition is within the same block scope
5f05dabc 38as the my if you expect to be able to access those private variables.
a0d0e21e 39
4633a7c4 40Declaring a subroutine allows a subroutine name to be used as if it were a
41list operator from that point forward in the program. You can declare a
54310121 42subroutine without defining it by saying C<sub name>, thus:
a0d0e21e 43
54310121 44 sub myname;
a0d0e21e 45 $me = myname $0 or die "can't get myname";
46
19799a22 47Note that my() functions as a list operator, not as a unary operator; so
54310121 48be careful to use C<or> instead of C<||> in this case. However, if
49you were to declare the subroutine as C<sub myname ($)>, then
02c45c47 50C<myname> would function as a unary operator, so either C<or> or
54310121 51C<||> would work.
a0d0e21e 52
4633a7c4 53Subroutines declarations can also be loaded up with the C<require> statement
54or both loaded and imported into your namespace with a C<use> statement.
55See L<perlmod> for details on this.
a0d0e21e 56
4633a7c4 57A statement sequence may contain declarations of lexically-scoped
58variables, but apart from declaring a variable name, the declaration acts
59like an ordinary statement, and is elaborated within the sequence of
60statements as if it were an ordinary statement. That means it actually
61has both compile-time and run-time effects.
a0d0e21e 62
63=head2 Simple statements
64
65The only kind of simple statement is an expression evaluated for its
66side effects. Every simple statement must be terminated with a
67semicolon, unless it is the final statement in a block, in which case
68the semicolon is optional. (A semicolon is still encouraged there if the
5f05dabc 69block takes up more than one line, because you may eventually add another line.)
a0d0e21e 70Note that there are some operators like C<eval {}> and C<do {}> that look
54310121 71like compound statements, but aren't (they're just TERMs in an expression),
4633a7c4 72and thus need an explicit termination if used as the last item in a statement.
a0d0e21e 73
74Any simple statement may optionally be followed by a I<SINGLE> modifier,
75just before the terminating semicolon (or block ending). The possible
76modifiers are:
77
78 if EXPR
79 unless EXPR
80 while EXPR
81 until EXPR
ecca16b0 82 foreach EXPR
a0d0e21e 83
84The C<if> and C<unless> modifiers have the expected semantics,
ecca16b0 85presuming you're a speaker of English. The C<foreach> modifier is an
f86cebdf 86iterator: For each value in EXPR, it aliases C<$_> to the value and
ecca16b0 87executes the statement. The C<while> and C<until> modifiers have the
f86cebdf 88usual "C<while> loop" semantics (conditional evaluated first), except
19799a22 89when applied to a C<do>-BLOCK (or to the deprecated C<do>-SUBROUTINE
ecca16b0 90statement), in which case the block executes once before the
91conditional is evaluated. This is so that you can write loops like:
a0d0e21e 92
93 do {
4633a7c4 94 $line = <STDIN>;
a0d0e21e 95 ...
4633a7c4 96 } until $line eq ".\n";
a0d0e21e 97
5a964f20 98See L<perlfunc/do>. Note also that the loop control statements described
99later will I<NOT> work in this construct, because modifiers don't take
100loop labels. Sorry. You can always put another block inside of it
101(for C<next>) or around it (for C<last>) to do that sort of thing.
f86cebdf 102For C<next>, just double the braces:
5a964f20 103
104 do {{
105 next if $x == $y;
106 # do something here
107 }} until $x++ > $z;
108
f86cebdf 109For C<last>, you have to be more elaborate:
5a964f20 110
111 LOOP: {
112 do {
113 last if $x = $y**2;
114 # do something here
115 } while $x++ <= $z;
116 }
a0d0e21e 117
118=head2 Compound statements
119
120In Perl, a sequence of statements that defines a scope is called a block.
121Sometimes a block is delimited by the file containing it (in the case
122of a required file, or the program as a whole), and sometimes a block
123is delimited by the extent of a string (in the case of an eval).
124
125But generally, a block is delimited by curly brackets, also known as braces.
126We will call this syntactic construct a BLOCK.
127
128The following compound statements may be used to control flow:
129
130 if (EXPR) BLOCK
131 if (EXPR) BLOCK else BLOCK
132 if (EXPR) BLOCK elsif (EXPR) BLOCK ... else BLOCK
133 LABEL while (EXPR) BLOCK
134 LABEL while (EXPR) BLOCK continue BLOCK
135 LABEL for (EXPR; EXPR; EXPR) BLOCK
748a9306 136 LABEL foreach VAR (LIST) BLOCK
a0d0e21e 137 LABEL BLOCK continue BLOCK
138
139Note that, unlike C and Pascal, these are defined in terms of BLOCKs,
140not statements. This means that the curly brackets are I<required>--no
141dangling statements allowed. If you want to write conditionals without
142curly brackets there are several other ways to do it. The following
143all do the same thing:
144
145 if (!open(FOO)) { die "Can't open $FOO: $!"; }
146 die "Can't open $FOO: $!" unless open(FOO);
147 open(FOO) or die "Can't open $FOO: $!"; # FOO or bust!
148 open(FOO) ? 'hi mom' : die "Can't open $FOO: $!";
149 # a bit exotic, that last one
150
5f05dabc 151The C<if> statement is straightforward. Because BLOCKs are always
a0d0e21e 152bounded by curly brackets, there is never any ambiguity about which
153C<if> an C<else> goes with. If you use C<unless> in place of C<if>,
154the sense of the test is reversed.
155
156The C<while> statement executes the block as long as the expression is
f86cebdf 157true (does not evaluate to the null string (C<"">) or C<0> or C<"0")>. The LABEL is
4633a7c4 158optional, and if present, consists of an identifier followed by a colon.
159The LABEL identifies the loop for the loop control statements C<next>,
160C<last>, and C<redo>. If the LABEL is omitted, the loop control statement
161refers to the innermost enclosing loop. This may include dynamically
162looking back your call-stack at run time to find the LABEL. Such
163desperate behavior triggers a warning if you use the B<-w> flag.
164
165If there is a C<continue> BLOCK, it is always executed just before the
166conditional is about to be evaluated again, just like the third part of a
167C<for> loop in C. Thus it can be used to increment a loop variable, even
168when the loop has been continued via the C<next> statement (which is
169similar to the C C<continue> statement).
170
171=head2 Loop Control
172
173The C<next> command is like the C<continue> statement in C; it starts
174the next iteration of the loop:
175
176 LINE: while (<STDIN>) {
177 next LINE if /^#/; # discard comments
178 ...
179 }
180
181The C<last> command is like the C<break> statement in C (as used in
182loops); it immediately exits the loop in question. The
183C<continue> block, if any, is not executed:
184
185 LINE: while (<STDIN>) {
186 last LINE if /^$/; # exit when done with header
187 ...
188 }
189
190The C<redo> command restarts the loop block without evaluating the
191conditional again. The C<continue> block, if any, is I<not> executed.
192This command is normally used by programs that want to lie to themselves
193about what was just input.
194
195For example, when processing a file like F</etc/termcap>.
196If your input lines might end in backslashes to indicate continuation, you
197want to skip ahead and get the next record.
198
199 while (<>) {
200 chomp;
54310121 201 if (s/\\$//) {
202 $_ .= <>;
4633a7c4 203 redo unless eof();
204 }
205 # now process $_
54310121 206 }
4633a7c4 207
208which is Perl short-hand for the more explicitly written version:
209
54310121 210 LINE: while (defined($line = <ARGV>)) {
4633a7c4 211 chomp($line);
54310121 212 if ($line =~ s/\\$//) {
213 $line .= <ARGV>;
4633a7c4 214 redo LINE unless eof(); # not eof(ARGV)!
215 }
216 # now process $line
54310121 217 }
4633a7c4 218
5a964f20 219Note that if there were a C<continue> block on the above code, it would get
220executed even on discarded lines. This is often used to reset line counters
221or C<?pat?> one-time matches.
4633a7c4 222
5a964f20 223 # inspired by :1,$g/fred/s//WILMA/
224 while (<>) {
225 ?(fred)? && s//WILMA $1 WILMA/;
226 ?(barney)? && s//BETTY $1 BETTY/;
227 ?(homer)? && s//MARGE $1 MARGE/;
228 } continue {
229 print "$ARGV $.: $_";
230 close ARGV if eof(); # reset $.
231 reset if eof(); # reset ?pat?
4633a7c4 232 }
233
a0d0e21e 234If the word C<while> is replaced by the word C<until>, the sense of the
235test is reversed, but the conditional is still tested before the first
236iteration.
237
5a964f20 238The loop control statements don't work in an C<if> or C<unless>, since
239they aren't loops. You can double the braces to make them such, though.
240
241 if (/pattern/) {{
242 next if /fred/;
243 next if /barney/;
244 # so something here
245 }}
246
5b23ba8b 247The form C<while/if BLOCK BLOCK>, available in Perl 4, is no longer
248available. Replace any occurrence of C<if BLOCK> by C<if (do BLOCK)>.
4633a7c4 249
cb1a09d0 250=head2 For Loops
a0d0e21e 251
cb1a09d0 252Perl's C-style C<for> loop works exactly like the corresponding C<while> loop;
253that means that this:
a0d0e21e 254
255 for ($i = 1; $i < 10; $i++) {
256 ...
257 }
258
cb1a09d0 259is the same as this:
a0d0e21e 260
261 $i = 1;
262 while ($i < 10) {
263 ...
264 } continue {
265 $i++;
266 }
267
55497cff 268(There is one minor difference: The first form implies a lexical scope
269for variables declared with C<my> in the initialization expression.)
270
cb1a09d0 271Besides the normal array index looping, C<for> can lend itself
272to many other interesting applications. Here's one that avoids the
54310121 273problem you get into if you explicitly test for end-of-file on
274an interactive file descriptor causing your program to appear to
cb1a09d0 275hang.
276
277 $on_a_tty = -t STDIN && -t STDOUT;
278 sub prompt { print "yes? " if $on_a_tty }
279 for ( prompt(); <STDIN>; prompt() ) {
280 # do something
54310121 281 }
cb1a09d0 282
283=head2 Foreach Loops
284
4633a7c4 285The C<foreach> loop iterates over a normal list value and sets the
55497cff 286variable VAR to be each element of the list in turn. If the variable
287is preceded with the keyword C<my>, then it is lexically scoped, and
288is therefore visible only within the loop. Otherwise, the variable is
289implicitly local to the loop and regains its former value upon exiting
290the loop. If the variable was previously declared with C<my>, it uses
291that variable instead of the global one, but it's still localized to
19799a22 292the loop.
4633a7c4 293
294The C<foreach> keyword is actually a synonym for the C<for> keyword, so
5a964f20 295you can use C<foreach> for readability or C<for> for brevity. (Or because
296the Bourne shell is more familiar to you than I<csh>, so writing C<for>
f86cebdf 297comes more naturally.) If VAR is omitted, C<$_> is set to each value.
5a964f20 298If any element of LIST is an lvalue, you can modify it by modifying VAR
299inside the loop. That's because the C<foreach> loop index variable is
300an implicit alias for each item in the list that you're looping over.
302617ea 301
302If any part of LIST is an array, C<foreach> will get very confused if
303you add or remove elements within the loop body, for example with
304C<splice>. So don't do that.
305
306C<foreach> probably won't do what you expect if VAR is a tied or other
307special variable. Don't do that either.
4633a7c4 308
748a9306 309Examples:
a0d0e21e 310
4633a7c4 311 for (@ary) { s/foo/bar/ }
a0d0e21e 312
55497cff 313 foreach my $elem (@elements) {
a0d0e21e 314 $elem *= 2;
315 }
316
4633a7c4 317 for $count (10,9,8,7,6,5,4,3,2,1,'BOOM') {
318 print $count, "\n"; sleep(1);
a0d0e21e 319 }
320
321 for (1..15) { print "Merry Christmas\n"; }
322
4633a7c4 323 foreach $item (split(/:[\\\n:]*/, $ENV{TERMCAP})) {
a0d0e21e 324 print "Item: $item\n";
325 }
326
4633a7c4 327Here's how a C programmer might code up a particular algorithm in Perl:
328
55497cff 329 for (my $i = 0; $i < @ary1; $i++) {
330 for (my $j = 0; $j < @ary2; $j++) {
4633a7c4 331 if ($ary1[$i] > $ary2[$j]) {
332 last; # can't go to outer :-(
333 }
334 $ary1[$i] += $ary2[$j];
335 }
cb1a09d0 336 # this is where that last takes me
4633a7c4 337 }
338
184e9718 339Whereas here's how a Perl programmer more comfortable with the idiom might
cb1a09d0 340do it:
4633a7c4 341
54310121 342 OUTER: foreach my $wid (@ary1) {
55497cff 343 INNER: foreach my $jet (@ary2) {
cb1a09d0 344 next OUTER if $wid > $jet;
345 $wid += $jet;
54310121 346 }
347 }
4633a7c4 348
cb1a09d0 349See how much easier this is? It's cleaner, safer, and faster. It's
350cleaner because it's less noisy. It's safer because if code gets added
c07a80fd 351between the inner and outer loops later on, the new code won't be
5f05dabc 352accidentally executed. The C<next> explicitly iterates the other loop
c07a80fd 353rather than merely terminating the inner one. And it's faster because
354Perl executes a C<foreach> statement more rapidly than it would the
355equivalent C<for> loop.
4633a7c4 356
357=head2 Basic BLOCKs and Switch Statements
358
55497cff 359A BLOCK by itself (labeled or not) is semantically equivalent to a
360loop that executes once. Thus you can use any of the loop control
361statements in it to leave or restart the block. (Note that this is
362I<NOT> true in C<eval{}>, C<sub{}>, or contrary to popular belief
363C<do{}> blocks, which do I<NOT> count as loops.) The C<continue>
364block is optional.
4633a7c4 365
366The BLOCK construct is particularly nice for doing case
a0d0e21e 367structures.
368
369 SWITCH: {
370 if (/^abc/) { $abc = 1; last SWITCH; }
371 if (/^def/) { $def = 1; last SWITCH; }
372 if (/^xyz/) { $xyz = 1; last SWITCH; }
373 $nothing = 1;
374 }
375
f86cebdf 376There is no official C<switch> statement in Perl, because there are
a0d0e21e 377already several ways to write the equivalent. In addition to the
378above, you could write
379
380 SWITCH: {
381 $abc = 1, last SWITCH if /^abc/;
382 $def = 1, last SWITCH if /^def/;
383 $xyz = 1, last SWITCH if /^xyz/;
384 $nothing = 1;
385 }
386
cb1a09d0 387(That's actually not as strange as it looks once you realize that you can
a0d0e21e 388use loop control "operators" within an expression, That's just the normal
389C comma operator.)
390
391or
392
393 SWITCH: {
394 /^abc/ && do { $abc = 1; last SWITCH; };
395 /^def/ && do { $def = 1; last SWITCH; };
396 /^xyz/ && do { $xyz = 1; last SWITCH; };
397 $nothing = 1;
398 }
399
f86cebdf 400or formatted so it stands out more as a "proper" C<switch> statement:
a0d0e21e 401
402 SWITCH: {
54310121 403 /^abc/ && do {
404 $abc = 1;
405 last SWITCH;
a0d0e21e 406 };
407
54310121 408 /^def/ && do {
409 $def = 1;
410 last SWITCH;
a0d0e21e 411 };
412
54310121 413 /^xyz/ && do {
414 $xyz = 1;
415 last SWITCH;
a0d0e21e 416 };
417 $nothing = 1;
418 }
419
420or
421
422 SWITCH: {
423 /^abc/ and $abc = 1, last SWITCH;
424 /^def/ and $def = 1, last SWITCH;
425 /^xyz/ and $xyz = 1, last SWITCH;
426 $nothing = 1;
427 }
428
429or even, horrors,
430
431 if (/^abc/)
432 { $abc = 1 }
433 elsif (/^def/)
434 { $def = 1 }
435 elsif (/^xyz/)
436 { $xyz = 1 }
437 else
438 { $nothing = 1 }
439
f86cebdf 440A common idiom for a C<switch> statement is to use C<foreach>'s aliasing to make
441a temporary assignment to C<$_> for convenient matching:
4633a7c4 442
443 SWITCH: for ($where) {
444 /In Card Names/ && do { push @flags, '-e'; last; };
445 /Anywhere/ && do { push @flags, '-h'; last; };
446 /In Rulings/ && do { last; };
447 die "unknown value for form variable where: `$where'";
54310121 448 }
4633a7c4 449
cb1a09d0 450Another interesting approach to a switch statement is arrange
451for a C<do> block to return the proper value:
452
453 $amode = do {
5a964f20 454 if ($flag & O_RDONLY) { "r" } # XXX: isn't this 0?
54310121 455 elsif ($flag & O_WRONLY) { ($flag & O_APPEND) ? "a" : "w" }
cb1a09d0 456 elsif ($flag & O_RDWR) {
457 if ($flag & O_CREAT) { "w+" }
c07a80fd 458 else { ($flag & O_APPEND) ? "a+" : "r+" }
cb1a09d0 459 }
460 };
461
5a964f20 462Or
463
464 print do {
465 ($flags & O_WRONLY) ? "write-only" :
466 ($flags & O_RDWR) ? "read-write" :
467 "read-only";
468 };
469
470Or if you are certainly that all the C<&&> clauses are true, you can use
471something like this, which "switches" on the value of the
f86cebdf 472C<HTTP_USER_AGENT> envariable.
5a964f20 473
474 #!/usr/bin/perl
475 # pick out jargon file page based on browser
476 $dir = 'http://www.wins.uva.nl/~mes/jargon';
477 for ($ENV{HTTP_USER_AGENT}) {
478 $page = /Mac/ && 'm/Macintrash.html'
479 || /Win(dows )?NT/ && 'e/evilandrude.html'
480 || /Win|MSIE|WebTV/ && 'm/MicroslothWindows.html'
481 || /Linux/ && 'l/Linux.html'
482 || /HP-UX/ && 'h/HP-SUX.html'
483 || /SunOS/ && 's/ScumOS.html'
484 || 'a/AppendixB.html';
485 }
486 print "Location: $dir/$page\015\012\015\012";
487
488That kind of switch statement only works when you know the C<&&> clauses
489will be true. If you don't, the previous C<?:> example should be used.
490
19799a22 491You might also consider writing a hash of subroutine references
492instead of synthesizing a C<switch> statement.
5a964f20 493
4633a7c4 494=head2 Goto
495
19799a22 496Although not for the faint of heart, Perl does support a C<goto>
497statement. There are three forms: C<goto>-LABEL, C<goto>-EXPR, and
498C<goto>-&NAME. A loop's LABEL is not actually a valid target for
499a C<goto>; it's just the name of the loop.
4633a7c4 500
f86cebdf 501The C<goto>-LABEL form finds the statement labeled with LABEL and resumes
4633a7c4 502execution there. It may not be used to go into any construct that
f86cebdf 503requires initialization, such as a subroutine or a C<foreach> loop. It
4633a7c4 504also can't be used to go into a construct that is optimized away. It
505can be used to go almost anywhere else within the dynamic scope,
506including out of subroutines, but it's usually better to use some other
f86cebdf 507construct such as C<last> or C<die>. The author of Perl has never felt the
508need to use this form of C<goto> (in Perl, that is--C is another matter).
4633a7c4 509
f86cebdf 510The C<goto>-EXPR form expects a label name, whose scope will be resolved
511dynamically. This allows for computed C<goto>s per FORTRAN, but isn't
4633a7c4 512necessarily recommended if you're optimizing for maintainability:
513
514 goto ("FOO", "BAR", "GLARCH")[$i];
515
f86cebdf 516The C<goto>-&NAME form is highly magical, and substitutes a call to the
4633a7c4 517named subroutine for the currently running subroutine. This is used by
f86cebdf 518C<AUTOLOAD()> subroutines that wish to load another subroutine and then
4633a7c4 519pretend that the other subroutine had been called in the first place
f86cebdf 520(except that any modifications to C<@_> in the current subroutine are
521propagated to the other subroutine.) After the C<goto>, not even C<caller()>
4633a7c4 522will be able to tell that this routine was called first.
523
c07a80fd 524In almost all cases like this, it's usually a far, far better idea to use the
525structured control flow mechanisms of C<next>, C<last>, or C<redo> instead of
4633a7c4 526resorting to a C<goto>. For certain applications, the catch and throw pair of
527C<eval{}> and die() for exception processing can also be a prudent approach.
cb1a09d0 528
529=head2 PODs: Embedded Documentation
530
531Perl has a mechanism for intermixing documentation with source code.
c07a80fd 532While it's expecting the beginning of a new statement, if the compiler
cb1a09d0 533encounters a line that begins with an equal sign and a word, like this
534
535 =head1 Here There Be Pods!
536
537Then that text and all remaining text up through and including a line
538beginning with C<=cut> will be ignored. The format of the intervening
54310121 539text is described in L<perlpod>.
cb1a09d0 540
541This allows you to intermix your source code
542and your documentation text freely, as in
543
544 =item snazzle($)
545
54310121 546 The snazzle() function will behave in the most spectacular
cb1a09d0 547 form that you can possibly imagine, not even excepting
548 cybernetic pyrotechnics.
549
550 =cut back to the compiler, nuff of this pod stuff!
551
552 sub snazzle($) {
553 my $thingie = shift;
554 .........
54310121 555 }
cb1a09d0 556
54310121 557Note that pod translators should look at only paragraphs beginning
184e9718 558with a pod directive (it makes parsing easier), whereas the compiler
54310121 559actually knows to look for pod escapes even in the middle of a
cb1a09d0 560paragraph. This means that the following secret stuff will be
561ignored by both the compiler and the translators.
562
563 $a=3;
564 =secret stuff
565 warn "Neither POD nor CODE!?"
566 =cut back
567 print "got $a\n";
568
f86cebdf 569You probably shouldn't rely upon the C<warn()> being podded out forever.
cb1a09d0 570Not all pod translators are well-behaved in this regard, and perhaps
571the compiler will become pickier.
774d564b 572
573One may also use pod directives to quickly comment out a section
574of code.
575
576=head2 Plain Old Comments (Not!)
577
5a964f20 578Much like the C preprocessor, Perl can process line directives. Using
579this, one can control Perl's idea of filenames and line numbers in
774d564b 580error or warning messages (especially for strings that are processed
f86cebdf 581with C<eval()>). The syntax for this mechanism is the same as for most
774d564b 582C preprocessors: it matches the regular expression
4b094ceb 583C</^#\s*line\s+(\d+)\s*(?:\s"([^"]*)")?/> with C<$1> being the line
774d564b 584number for the next line, and C<$2> being the optional filename
585(specified within quotes).
586
587Here are some examples that you should be able to type into your command
588shell:
589
590 % perl
591 # line 200 "bzzzt"
592 # the `#' on the previous line must be the first char on line
593 die 'foo';
594 __END__
595 foo at bzzzt line 201.
54310121 596
774d564b 597 % perl
598 # line 200 "bzzzt"
599 eval qq[\n#line 2001 ""\ndie 'foo']; print $@;
600 __END__
601 foo at - line 2001.
54310121 602
774d564b 603 % perl
604 eval qq[\n#line 200 "foo bar"\ndie 'foo']; print $@;
605 __END__
606 foo at foo bar line 200.
54310121 607
774d564b 608 % perl
609 # line 345 "goop"
610 eval "\n#line " . __LINE__ . ' "' . __FILE__ ."\"\ndie 'foo'";
611 print $@;
612 __END__
613 foo at goop line 345.
614
615=cut