Help for this page

Select Code to Download


  1. or download this
    print(
        concat(
            'At the',
            getVar('$hop')
        )
    );
    
  2. or download this
    $hop="\x41";
    print "\x41t the $hop";
    
  3. or download this
    $hop='A';
    print('At the'.$hop);
    
  4. or download this
    setVar('$hop', 'A');
    print(
        concat(
    ...
            getVar('$hop')
        )
    );
    
  5. or download this
    $hop="\\x41";
    print "\x41t the $hop";
    
  6. or download this
    $hop='\x41';
    print('At the'.$hop);
    
  7. or download this
    setVar('$hop', '\x41');
    print(
        concat(
    ...
            getVar('$hop')
        )
    );
    
  8. or download this
    $hop="\\x41";
    print "\x41t the $hop";
    s{.}{\x41};
    
  9. or download this
    $hop='\x41';
    print('At the'.$hop);
    $_ =~ s/./A/;
    
  10. or download this
    setVar('$hop', '\x41');
    print(
        concat(
    ...
        lhsRe('.'),
        rhsString('A')
    );
    
  11. or download this
    $hop="\\x41";
    print "\x41t the $hop";
    s{.}{\x41$hop};
    
  12. or download this
    $hop='\x41';
    print('At the'.$hop);
    $_ =~ s/./A$hop/;
    
  13. or download this
    setVar('$hop', '\x41');
    print(
        concat(
    ...
            '
        )
    );
    
  14. or download this
    $hop="\\x41";
    print "\x41t the $hop";
    s{.}{"\x41$hop"}e;
    
  15. or download this
    $hop='\x41';
    print('At the'.$hop);
    $_ =~ s/"./A$hop"/e;
    
  16. or download this
    setVar('$hop', '\x41');
    print(
        concat(
    ...
            )
        )
    );