File: test.dat

package info (click to toggle)
libppi-perl 1.203-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 1,576 kB
  • ctags: 603
  • sloc: perl: 10,139; makefile: 43
file content (16 lines) | stat: -rw-r--r-- 199 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl

# This is a simple perl script for testing PPI on

print "Hello World!\n";

foreach ( 1 .. 10 ) {
	if ( rand() > 0.5 ) {
		print "Big\n";
	} else {
		print "Small\n";
	}
}

exit();