Help for this page

Select Code to Download


  1. or download this
    my $var = 'blue';
    
    my $string1 = "the sky is $var\n";
    my $string2 = qq|the sky is $var\n|;
    
  2. or download this
    my $var = 'blue';
    
    my $string1 = "the \"sky\" is $var\n";
    my $string2 = qq|the "sky" is $var\n|;