1
0
mirror of https://github.com/imapsync/imapsync.git synced 2024-11-17 00:02:29 +01:00
imapsync/W/learn/ref

13 lines
195 B
Plaintext
Raw Normal View History

2016-09-19 17:17:24 +02:00
#!/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" ;