Распечатайте переменную Perl

my $variable;
$variable = "WORLD";

print "Hello $variable";

Hello WORLD
MVP