Hello experts !
When I run the program below I get the following:
print (...) interpreted as function at C:\perlscripts\hello.pl line 6.
1
Why is this warning appears and what is the meaning of it ?
Thanks !
#!/usr/bin/perl
use warnings;
use strict;
my $s = 'func(a,b)';
print ($s =~ m{\Qfunc(});
When I run the program below I get the following:
print (...) interpreted as function at C:\perlscripts\hello.pl line 6.
1
Why is this warning appears and what is the meaning of it ?
Thanks !
#!/usr/bin/perl
use warnings;
use strict;
my $s = 'func(a,b)';
print ($s =~ m{\Qfunc(});