Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

I was thinking "what language is that?" before I even started reading, so yeah, I spotted it.

Now you could say that was because you removed everything but the problem, but it's just as easy to discover analytically. What does an assignment try to modify? It's LHS. What's wrong with "message"? Well, that's obvious.

Warnings don't care about bare words, it's strict.

$ perl -ce'use strict; message = "foo";' Can't modify constant item in scalar assignment at -e line 1, near ""f +oo";" Bareword "message" not allowed while "strict subs" in use at -e line 1 +. -e had compilation errors.

Note that strict only cares if the bareword is not allowed by some other rule, such as if it appears to be a sub call.

$ perl -ce'use strict; sub message; message = "foo";' Can't modify non-lvalue subroutine call in scalar assignment at -e lin +e 1, near ""foo";" -e had compilation errors.

The above code is parsed as message() = "foo";, which is valid syntax, and it's even valid semantically if message is an lvalue sub.

$ perl -ce'use strict; sub message :lvalue; message = "foo";' -e syntax OK

By the way, where's the my?

$ perl -ce'use strict; my message = "foo";' No such class message at -e line 1, near "; my message" syntax error at -e line 1, near "my message =" -e had compilation errors.

In reply to Re: Surprise: "Can't modify constant item in scalar assignment" by ikegami
in thread Surprise: "Can't modify constant item in scalar assignment" [SOLVED] by sundialsvc4

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (2)
As of 2024-04-25 20:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found