|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T p
Length: 681 (0x2a9) Types: TextFile Names: »package.t«
└─⟦4f9d7c866⟧ Bits:30007245 EUUGD6: Sikkerheds distributionen └─⟦b5330643c⟧ »./cops/perl-4.019/perl.tar.Z« └─⟦2b9a58213⟧ └─⟦this⟧ »perl-4.019/t/comp/package.t«
#!./perl print "1..7\n"; $blurfl = 123; $foo = 3; package XYZ; $bar = 4; { package ABC; $blurfl = 5; $main'a = $'b; } $ABC'dyick = 6; $xyz = 2; $main = join(':', sort(keys _main)); $XYZ = join(':', sort(keys _XYZ)); $ABC = join(':', sort(keys _ABC)); print $XYZ eq 'ABC:XYZ:bar:main:xyz' ? "ok 1\n" : "not ok 1 '$XYZ'\n"; print $ABC eq 'blurfl:dyick' ? "ok 2\n" : "not ok 2\n"; print $main'blurfl == 123 ? "ok 3\n" : "not ok 3\n"; package ABC; print $blurfl == 5 ? "ok 4\n" : "not ok 4\n"; eval 'print $blurfl == 5 ? "ok 5\n" : "not ok 5\n";'; eval 'package main; print $blurfl == 123 ? "ok 6\n" : "not ok 6\n";'; print $blurfl == 5 ? "ok 7\n" : "not ok 7\n";