Help for this page

Select Code to Download


  1. or download this
    a => 'a' =~ m/b/,
    b => 'asdf'
    
  2. or download this
    'a', 'a' =~ m/b/, 'b', 'asdf'
    
  3. or download this
    'a', 'b', 'asdf'
    
  4. or download this
    a => scalar( 'a' =~ m/b/ ),
    b => 'asdf'
    
  5. or download this
    a => !!( 'a' =~ m/b/ ),
    b => 'asdf'
    
  6. or download this
    a => 'a' =~ m/b/ ? 1 : 0,
    b => 'asdf'