File: test3.pl

package info (click to toggle)
librcs-perl 1.05-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 308 kB
  • ctags: 89
  • sloc: perl: 1,399; makefile: 2
file content (17 lines) | stat: -rwxr-xr-x 237 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/local/bin/perl -w

use strict;
use lib '.';
use Rcs;

my $p = new Rcs();
my $n = new Rcs();

my $m = new Rcs();
$m->workdir("foo");

Rcs->workdir("bar");

print $p->workdir, "\n";
print $n->workdir, "\n";
print $m->workdir, "\n";