tphyahoo has asked for the wisdom of the Perl Monks concerning the following question:
#!perl #test.pl use strict; use warnings; #custom modules use lib 'E:/data/entwicklungsArena/perl/development/modules'; #Works use Misc::Logger; print 'without &: '; Misc::Logger::logMessage("test"); #Also works: print 'with &: '; &Misc::Logger::logMessage("test");
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: What is the point of the & sigil for function refs?
by merlyn (Sage) on Feb 04, 2005 at 12:14 UTC | |
by Random_Walk (Prior) on Feb 04, 2005 at 12:28 UTC | |
Re: What is the point of the & sigil for function refs?
by bpphillips (Friar) on Feb 04, 2005 at 13:21 UTC | |
by ihb (Deacon) on Feb 11, 2005 at 14:20 UTC | |
Re: What is the point of the & sigil for function refs?
by grinder (Bishop) on Feb 04, 2005 at 13:28 UTC | |
Re: What is the point of the & sigil for function refs? (oldie)
by tye (Sage) on Feb 04, 2005 at 15:24 UTC | |
Re: What is the point of the & / ampersand sigil for function refs?
by dimar (Curate) on Feb 07, 2005 at 17:17 UTC |