Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^2: Why won't say act like say when its tied?

by ELISHEVA (Prior)
on Mar 07, 2011 at 17:51 UTC ( [id://891871]=note: print w/replies, xml ) Need Help??


in reply to Re: Why won't say act like say when its tied?
in thread Why won't say act like say when its tied?

print appends the value of $\ to the end of whatever is passed to print, so if $\="***\n", then {print "hello", "\n"; } outputs "hello\n***\n" not plain "hello\n". That's why it is important for say to set local $\="\n" and not just add "\n" to the end of the list of things to print. Hope that helps.

Replies are listed 'Best First'.
Re^3: Why won't say act like say when its tied?
by Anonymous Monk on Mar 07, 2011 at 19:45 UTC
    Thanks, it does. So the intended behavior for say is to write exactly what the programmer intended plus \n without side effects from punctuation variables. Good to know.

Log In?
Username:
Password:

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

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

    No recent polls found