File: test.pl

package info (click to toggle)
libdanga-socket-perl 1.62-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 152 kB
  • sloc: perl: 1,219; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 211 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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;
}