Leser: 3
6 Einträge, 1 Seite |
1 2 3 4 5 6 7 8 9 10 11
#!/usr/bin/perl use warnings; use strict; eval { open( my $fh, '<', 'hello' ) or die "$!"; 1; } or { print "world\n"; }
1
2
syntax error at ./test.pl line 11, near "}"
Execution of ./test.pl aborted due to compilation errors.
pq+2008-12-15 15:35:29--was ist denn das für eine syntax? eval {...} or {...}??
6 Einträge, 1 Seite |