Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Help in putting "$" as part of output

by perlfan (Vicar)
on Mar 12, 2016 at 00:38 UTC ( [id://1157514]=note: print w/replies, xml ) Need Help??


in reply to Help in putting "$" as part of output

Please change:

open(F,">$filename.inp");

to

open my $F, ">", "$filename.inp";

Then change all subsequent references from F to $F.

See open for more details. That won't fix your current issue, but it'll level up your code and beginner status.

Replies are listed 'Best First'.
Re^2: Help in putting "$" as part of output
by Anonymous Monk on Mar 12, 2016 at 01:15 UTC

    See open for more details. That won't fix your current issue, but it'll level up your code and beginner status.

    use autodie;

      I was trying to be semantically equivalent to the OP. Sure, I could have said open(F,">$filename.inp") or die;, but my intent was not to advocate for an error handling strategy one way or another. I've also never had a need to use autodie, so it's not a go-to of mine. I know people who swear by it and those who hate it. Me, I am indifferent. And lazy.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (6)
As of 2024-04-23 12:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found