在Perl中,可以使用my
關鍵字來聲明變量。變量名以$
符號開頭,可以是任意的字母、數字和下劃線的組合。例如:
my $name = "Alice";
my $age = 30;
要使用變量,只需要直接使用變量名即可。例如:
print "My name is $name and I am $age years old.\n";
除了標量變量(scalar variable),Perl還支持數組(array)和哈希(hash)變量。數組以@
符號開頭,哈希以%
符號開頭。例如:
my @numbers = (1, 2, 3, 4, 5);
my %person = ("name" => "Bob", "age" => 25);
使用數組和哈希的方式也類似于標量變量。例如:
print "The first number is $numbers[0].\n";
print "The person's name is $person{'name'} and age is $person{'age'}.\n";