mirror of
https://github.com/imapsync/imapsync.git
synced 2025-06-10 14:44:32 +02:00
12 lines
195 B
Perl
Executable file
12 lines
195 B
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
|
|
my $debug = 'val_debug' ;
|
|
|
|
print "ref(\\\$debug)=" . ref(\$debug) . "\n" ;
|
|
print "ref(\$debug)=" . ref($debug) . "\n" ;
|
|
print "\n$debug=$debug\n" ;
|