- or download this
my $data = 'pretend this is a complex data structure';
my $is_web_browser = 1;
...
else {
print qq(\e[0;31m$data\e[0m\n);
}
- or download this
package SomeModule;
use strict;
...
}
1;
- or download this
use strict;
use warnings;
...
my $data = SomeModule::get_data();
print qq(<span color="red">$data</span>\n);
- or download this
use strict;
use warnings;
...
my $data = SomeModule::get_data();
print qq(\e[0;31m$data\e[0m\n);