#!/usr/bin/perl

# Autoflush somehow gets turned on for this handle, even when it's an
# AF_UNIX socketpair
$|++;

use strict;
use warnings;

while (1) {
    print( "[$$] Hello World\n" ) or die;
    sleep 1;
}


syntax highlighted by Code2HTML, v. 0.9.1