- or download this
print(
concat(
'At the',
getVar('$hop')
)
);
- or download this
$hop="\x41";
print "\x41t the $hop";
- or download this
$hop='A';
print('At the'.$hop);
- or download this
setVar('$hop', 'A');
print(
concat(
...
getVar('$hop')
)
);
- or download this
$hop="\\x41";
print "\x41t the $hop";
- or download this
$hop='\x41';
print('At the'.$hop);
- or download this
setVar('$hop', '\x41');
print(
concat(
...
getVar('$hop')
)
);
- or download this
$hop="\\x41";
print "\x41t the $hop";
s{.}{\x41};
- or download this
$hop='\x41';
print('At the'.$hop);
$_ =~ s/./A/;
- or download this
setVar('$hop', '\x41');
print(
concat(
...
lhsRe('.'),
rhsString('A')
);
- or download this
$hop="\\x41";
print "\x41t the $hop";
s{.}{\x41$hop};
- or download this
$hop='\x41';
print('At the'.$hop);
$_ =~ s/./A$hop/;
- or download this
setVar('$hop', '\x41');
print(
concat(
...
'
)
);
- or download this
$hop="\\x41";
print "\x41t the $hop";
s{.}{"\x41$hop"}e;
- or download this
$hop='\x41';
print('At the'.$hop);
$_ =~ s/"./A$hop"/e;
- or download this
setVar('$hop', '\x41');
print(
concat(
...
)
)
);