in reply to Re^4: printing unitialized value of the 'do BLOCK'
in thread printing unitialized value of the 'do BLOCK'

> Interestingly, only one of these lines gives a warning:

because the second one returns an empty list, which is a legal use of print.

C:\WINDOWS\system32>Perl -MData::Dump=pp -e "pp do{3 if ()} " undef C:\WINDOWS\system32>Perl -MData::Dump=pp -e "pp do{()} " ()

Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery FootballPerl is like chess, only without the dice

Replies are listed 'Best First'.
Re^6: printing unitialized value of the 'do BLOCK'
by rsFalse (Chaplain) on Dec 23, 2019 at 21:22 UTC
    Thanks, now I understand the difference: in the first case '()' wanted in scalar context which was forced by 'if' (so it becomes an undefined value).

    Added:
    An 'if' forces scalar context as 'and' do, so it may be that these two are internally implemented the same.