File: print.pl

package info (click to toggle)
libtest-script-perl 1.31-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 296 kB
  • sloc: perl: 426; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 156 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
#!perl

use strict;

print STDOUT "Standard Out\n";
print STDOUT "second line\n";
print STDERR "Standard Error\n";
print STDERR "another line\n";

exit(0);