7 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
C:\>more eintest.pl
#!/usr/bin/perl
use strict;
use warnings;
END{
print "test\n";
eval { require "nochntest.pl" };
print "nach require\n";
}
C:\>more nochntest.pl
#!/usr/bin/perl
use strict;
use warnings;
print "nochntest.pl\n";
exit;
C:\>eintest.pl
test
nochntest.pl
C:\>
Can't return outside a subroutine at ....
7 Einträge, 1 Seite |