|
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 - download
Length: 491 (0x1eb) Types: TextFile Names: »decl.t«
└─⟦4f9d7c866⟧ Bits:30007245 EUUGD6: Sikkerheds distributionen └─⟦b5330643c⟧ »./cops/perl-4.019/perl.tar.Z« └─⟦2b9a58213⟧ └─⟦this⟧ »perl-4.019/t/comp/decl.t«
#!./perl # $Header: decl.t,v 4.0 91/03/20 01:50:09 lwall Locked $ # check to see if subroutine declarations work everwhere sub one { print "ok 1\n"; } format one = ok 5 . print "1..7\n"; do one(); do two(); sub two { print "ok 2\n"; } format two = @<<< $foo . if ($x eq $x) { sub three { print "ok 3\n"; } do three(); } do four(); $~ = 'one'; write; $~ = 'two'; $foo = "ok 6"; write; $~ = 'three'; write; format three = ok 7 . sub four { print "ok 4\n"; }