Help for this page
if ($answer=42) { # $answer is now always 42 ... ... ... }
use Readonly; Readonly my $fortytwo => 42; # note: =>, not = ... if ($fortytwo=$answer) { # "Modification of a read-only value attempte +d" ... }
use constant FORTYTWO => 42; # note: =>, not = ... if (FORTYTWO=$answer) { # "Can't modify constant item in scalar assign +ment" ... }
Ceramics Glass Wood Metal Plastic Paper Banana leaves Something else
Results (402 votes), past polls