- or download this
a => 'a' =~ m/b/,
b => 'asdf'
- or download this
'a', 'a' =~ m/b/, 'b', 'asdf'
- or download this
'a', 'b', 'asdf'
- or download this
a => scalar( 'a' =~ m/b/ ),
b => 'asdf'
- or download this
a => !!( 'a' =~ m/b/ ),
b => 'asdf'
- or download this
a => 'a' =~ m/b/ ? 1 : 0,
b => 'asdf'