- or download this
{
# Temporarily undefine STDOUT.
local *STDOUT;
func();
}
- or download this
sub func { print("in func\n"); }
...
func();
}
print("post func\n");
- or download this
{
# Temporarily redirect STDOUT.
open(local *STDOUT, '>', '/dev/nul');
func();
}