in reply to Re: weird behavior of creating a temp dir by File::Temp
in thread weird behavior of creating a temp dir by File::Temp
Sounds like an argument for Method::Signatures:
results in#!/usr/bin/perl use strict; use warnings; use Method::Signatures; func foo(:$CLEANUP) { print "I will".($CLEANUP?"":" not")." clean up\n"; } foo(CLEANIP => 1);
$ perl testSignatures.pl In call to main::foo(), does not take CLEANIP as named argument(s) at testSignatures.pl line 13.
|
---|