Linux cpanel2.daytoncreative.net 2.6.32-754.29.2.el6.x86_64 #1 SMP Tue May 12 17:39:04 UTC 2020 x86_64
Apache/2.4.43 (cPanel) OpenSSL/1.1.1g mod_bwlimited/1.4
Server IP : 70.62.220.67 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : michaelgreg
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
log /
perl-5.20.2 /
ext /
arybase /
t /
Delete
Unzip
Name
Size
Permission
Date
Action
aeach.t
586
B
-r--r--r--
2014-12-27 11:48
aelem.t
1009
B
-r--r--r--
2014-12-27 11:48
akeys.t
705
B
-r--r--r--
2014-12-27 11:48
arybase.t
896
B
-r--r--r--
2014-12-27 11:48
aslice.t
1.07
KB
-r--r--r--
2014-12-27 11:48
av2arylen.t
383
B
-r--r--r--
2014-12-27 11:48
index.t
457
B
-r--r--r--
2014-12-27 11:48
lslice.t
910
B
-r--r--r--
2014-12-27 11:48
pos.t
596
B
-r--r--r--
2014-12-27 11:48
scope.t
520
B
-r--r--r--
2014-12-27 11:48
scope_0.pm
69
B
-r--r--r--
2014-12-27 11:48
splice.t
1.29
KB
-r--r--r--
2014-12-27 11:48
substr.t
289
B
-r--r--r--
2014-12-27 11:48
Save
Rename
#!perl # Basic tests for $[ as a variable # plus miscellaneous bug fix tests no warnings 'deprecated'; use Test::More tests => 7; sub outside_base_scope { return "${'['}" } $[ = 3; my $base = \$[; is "$$base", 3, 'retval of $['; is outside_base_scope, 0, 'retval of $[ outside its scope'; ${'['} = 3; pass('run-time $[ = 3 assignment (in $[ = 3 scope)'); { $[ = 0; ${'['} = 0; pass('run-time $[ = 0 assignment (in $[ = 3 scope)'); } eval { ${'['} = 1 }; my $f = __FILE__; my $l = __LINE__; is $@, "That use of \$[ is unsupported at $f line $l.\n", "error when setting $[ to integer other than current base at run-time"; $[ = 6.7; is "$[", 6, '$[ is an integer'; eval { my $x = 45; $[ = \$x }; $l = __LINE__; is $@, "That use of \$[ is unsupported at $f line $l.\n", 'error when setting $[ to ref'; sub foo { my $x; $x = wait } # compilation of this routine used to crash 1;