File: Test_DelayedImport.pm

package info (click to toggle)
liblog-trace-perl 1.070-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 180 kB
  • ctags: 42
  • sloc: perl: 859; makefile: 44
file content (12 lines) | stat: -rw-r--r-- 230 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/local/bin/perl -w
# $Id: Test_DelayedImport.pm,v 1.2 2004/11/19 12:53:32 simonf Exp $
package Test_DelayedImport;
use vars '$VERSION'; $VERSION = 0.00001;

use strict;

sub hello { TRACE('Hello World!') }

sub TRACE {}

1;