Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Is an empty block not a block?

by GrandFather (Saint)
on Nov 18, 2005 at 21:49 UTC ( [id://509967]=note: print w/replies, xml ) Need Help??


in reply to Is an empty block not a block?

{} is an empty hash. Consider:

use warnings; use strict; my $hashRef = {}; print "This is fine";

then remove the variable and assignment.

use warnings; use strict; {}; print "This is fine";
</c>

DWIM is Perl's answer to Gödel

Replies are listed 'Best First'.
Re^2: Is an empty block not a block?
by chas (Priest) on Nov 18, 2005 at 22:18 UTC
    But if so, why is a semicolon necessary. It isn't if the hashref isn't empty as in:
    {blah, "blah"} print "This is fine\n";

    I don't see why being empty changes anything essential.
    Perhaps in the empty case, perl doesn't know what it is, and that's the problem...
    (I guess {blah, "blah"} is considered to be a hashref; I don't know what else it would be...)
    chas

      Actualy {blah, "blah"} is considered a block. See below for proof. ;). Perl is trying to be smart and guessing on what exactly {} is based on context. {} makes lots of since as a hash ref but very little as a block. {blah, "blah"}is usefull as a block while my $x = {blah, "blah"}; is most probalby a hashref and treated that way.

      C:\Perl\test>perl -e"{test,'blah'} print 'hello'"; hello C:\Perl\test>perl -e"{test,'blah', print '1'} print 'hello'"; 1hello

      ___________
      Eric Hodges $_='y==QAe=e?y==QG@>@?iy==QVq?f?=a@iG?=QQ=Q?9'; s/(.)/ord($1)-50/eigs;tr/6123457/- \/|\\\_\n/;print;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (3)
As of 2024-04-24 00:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found