Dear Monks,
The simplest script
#!/usr/bin/perl
use strict;
use warnings;
print "Hello, World...\n";
Works fine in my computer (Printing in the CMD screen "Hello World") but in other computers did not print anything on the screen after installing the same perl version. What is happening?
Please help.