Help for this page

Select Code to Download


  1. or download this
    $aword          = 'foo';     # use single quotes instead of double 
    $containmentvar = "$aword";  # use double quotes instead of single
    
  2. or download this
    $aword           = 'foo';
    $containmentvar  = 'aword';  # no dollar sign here
    $$containmentvar = 'bar';    # foo or bar?
    print "$aword\n";