Print A Variable Perl

[Solved] Print A Variable Perl | Perl - Code Explorer | yomemimo.com
Question : print a variable perl

Answered by : mvp

my $variable;
$variable = "WORLD";
print "Hello $variable";
Hello WORLD

Source : https://stackoverflow.com/questions/6181381/how-to-print-variables-in-perl | Last Update : Tue, 28 Jun 22

Answers related to print a variable perl

Code Explorer Popular Question For Perl