Help for this page

Select Code to Download


  1. or download this
    my $alpha = "A";
    my $delta = "D";
    my $test = '$delta and $alpha';
    eval "\$test = \"$test\"";
    print "$test";
    
  2. or download this
    my $alpha = "A";
    my $delta = "D";
    my $test = '$delta and $alpha';
    $test = "$delta and $alpha";
    print "$test";