fb16dfecae
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
15 lines
357 B
Text
15 lines
357 B
Text
This module lets you add debugging instructions which look
|
|
like comments and do nothing unless you 'use' this module.
|
|
|
|
use Devel::StealthDebug;
|
|
|
|
my $foo = 0;
|
|
# ... Several processing on $foo
|
|
|
|
my $bar = 1 / $foo; #!assert($foo != 0)!
|
|
|
|
my %myhash; #!watch(%myhash)!
|
|
|
|
sub func1 { #!emit(Entering func1)!
|
|
#...
|
|
}
|