The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
print STDERR "Child (pid=$$) [STDERR]\n";
while (1) {
	wait unless defined fork;
	$y++ for (1 .. 1000_000);
	print "$$: $y [STDOUT]\n";
};