Help for this page

Select Code to Download


  1. 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);
    }
    
  2. or download this
    package SomeModule;
    use strict;
    ...
    }
    
    1;
    
  3. or download this
    use strict;
    use warnings;
    ...
    
    my $data = SomeModule::get_data();
    print qq(<span color="red">$data</span>\n);
    
  4. or download this
    use strict;
    use warnings;
    ...
    
    my $data = SomeModule::get_data();
    print qq(\e[0;31m$data\e[0m\n);