Help for this page
my ($var1, $var2, $var3) = "Hello" x 3;
my ($var1, $var2, $var3) = map "Hello", 1..3;
my ($var1, $var2, $var3) = ("Hello") x 3;