The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
1234567891011121314151617181920 #### slice_util.pl -- Utility functions## Copyright (c) 1997 Ralf S. Engelschall, All Rights Reserved. ##sub verbose { local($str) = @_; if ($opt_x) { print STDERR "$str"; }}sub error { local($str) = @_; print STDERR "slice ERROR: $str"; exit(1);}1;##EOF##
##
## slice_util.pl -- Utility functions
## Copyright (c) 1997 Ralf S. Engelschall, All Rights Reserved.
sub
verbose {
local
(
$str
) =
@_
;
if
$opt_x
) {
print
STDERR
"$str"
}
error {
"slice ERROR: $str"
exit
(1);
1;
##EOF##