Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: open to a scalar variable

by kwaping (Priest)
on Jun 04, 2007 at 21:55 UTC ( #619242=note: print w/replies, xml ) Need Help??


in reply to open to a scalar variable

I'm not very familiar with this technique, but try this instead:
open(MESSAGE, "+>>", \$message) or die "no message $!"; open(WHOM, ">>&=", MESSAGE) or die "no whom $!"; open (WHAT, ">>&=", MESSAGE) or die "no what $!";
If $message is already a reference, try dropping the backslash too.

---
It's all fine and dandy until someone has to look at the code.

Replies are listed 'Best First'.
Re^2: open to a scalar variable
by girarde (Hermit) on Jun 05, 2007 at 14:04 UTC
    $message is declared but not defined until the reference assignment is made.

    Anyway, unquoting $message and putting the &= into the mode argument worked. Thank you.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://619242]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this? | Other CB clients
Other Users?
Others wandering the Monastery: (2)
As of 2023-03-22 18:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which type of climate do you prefer to live in?






    Results (60 votes). Check out past polls.

    Notices?