Skip to content

Instantly share code, notes, and snippets.

@gslin
Created January 15, 2014 08:18
Show Gist options
  • Save gslin/8432582 to your computer and use it in GitHub Desktop.
Save gslin/8432582 to your computer and use it in GitHub Desktop.
Quote...
#!/usr/bin/env php
<?php
echo "\\\"\'", "\n";
echo '\\\"\'', "\n";
#!/usr/bin/env perl
use 5.010;
use strict;
use warnings;
INIT {
$a = "\\\"\'";
$b = '\\\"\'';
say $a;
say $b;
}
__END__
#!/usr/bin/env python
print "\\\"\'"
print '\\\"\''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment