|
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: 451 (0x1c3) Types: TextFile Names: »print.t«
└─⟦4f9d7c866⟧ Bits:30007245 EUUGD6: Sikkerheds distributionen └─⟦b5330643c⟧ »./cops/perl-4.019/perl.tar.Z« └─⟦2b9a58213⟧ └─⟦this⟧ »perl-4.019/t/io/print.t«
#!./perl # $Header: print.t,v 4.0 91/03/20 01:51:08 lwall Locked $ print "1..16\n"; $foo = 'STDOUT'; print $foo "ok 1\n"; print "ok 2\n","ok 3\n","ok 4\n"; print STDOUT "ok 5\n"; open(foo,">-"); print foo "ok 6\n"; printf "ok %d\n",7; printf("ok %d\n",8); @a = ("ok %d%c",9,ord("\n")); printf @a; $a[1] = 10; printf STDOUT @a; $, = ' '; $\ = "\n"; print "ok","11"; @x = ("ok","12\nok","13\nok"); @y = ("15\nok","16"); print @x,"14\nok",@y;