My Perl Quiz
The ultimate place to learn Perl!
⌂
|
Start Quiz
|
List of questions
|
Other Quizes
Question #38:
What gets printed?
my $a = 1; { $a = 2; } END { $a = 3; } print $a;
1
2
3
the code will fail
Next Question