1
0
mirror of https://github.com/imapsync/imapsync.git synced 2024-11-17 08:12:48 +01:00
imapsync/W/learn/quotes

25 lines
451 B
Plaintext
Raw Normal View History

2016-09-19 17:17:24 +02:00
#!/usr/bin/perl
use strict ;
use warnings ;
print "123456789\\" ."\n" ;
print '123456789\\' ."\n" ;
print "123456789\"" ."\n" ;
print '123456789\'' ."\n" ;
print "\\" ."\n" ;
print q{\\} ."\n" ;
print qq{ !"#$%&'()*+,-./0123456789:;<=>?\@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefg\n} ;
print "\1auth=Bearer " . "\1\1" . "\n" ;
print '\1auth=Bearer ' . '\1\1' . "\n" ;
if ( "\1foo" eq '\1foo' ) {
print "equal\n" ;
}else{
print "not equal\n" ;
}