Help for this page

Select Code to Download


  1. or download this
    $_ = '\\something';      # \\something
    $_ = 'It\'s a tragedy';  # It's a tragedy
    $_ = '\\'';              # \'
    
  2. or download this
    $_ = q[\\something];     # \\something
    $_ = q[It's a tragedy];  # It's a tragedy
    $_ = q[\'];              # \'
    
  3. or download this
    ',\,\','