This commit is contained in:
Nick Bebout 2016-09-19 10:17:24 -05:00
parent 3eaac56812
commit 137242e609
114 changed files with 10852 additions and 8980 deletions

12
W/learn/ref Executable file
View file

@ -0,0 +1,12 @@
#!/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" ;