Help for this page

Select Code to Download


  1. or download this
    $a = qq|${system("echo 'hello from system'")}\n|;
    $a = "${system(\"echo 'hello from system'\")}\n";
    
  2. or download this
    #!/usr/bin/perl -wT
    use strict;
    ...
    my $a = <STDIN>;
    chomp($a);
    print "$a";