Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6726055
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T09:52:52+00:00 2026-05-26T09:52:52+00:00

#!/usr/bin/perl use Modern::Perl; while (<>) { chomp; say reverse; } The above code doesn’t

  • 0
#!/usr/bin/perl
use Modern::Perl;
while (<>)
{ chomp;
say reverse;  
}

The above code doesn’t work but when I change 2nd last line to say scalar reverse; then it works fine. Why do I need to force it to be a scalar explicitly? Can’t Perl DWIM?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T09:52:52+00:00Added an answer on May 26, 2026 at 9:52 am

    If I understand the documentation right, reverse normally operates on lists. In a list context used without arguments, it returns an empty list and by default doesn’t assign it anywhere. In your example, say outputs the unchanged $_;

    Forcing reverse into scalar context changes its behaviour and makes it reverse character strings, and use $_ by default. Because say can be used to print lists as well as scalars, it doesn’t force its arguments into scalar context.

    Perl probably does DWIM, just for given values of “I”.

    A breakdown of what reverse does when:

    #!/usr/bin/env perl
    use strict;
    use v5.12;
    
    my $inscalar = "foo bar";
    
    # `reverse` is in list context, $in is coerced to a single-element list
    my @outlist = reverse $inscalar;
    
    # `reverse` is in scalar context, so it reverses strings
    my $outscalar = reverse $inscalar;
    
    say join(" | ", @outlist); # prints "foo bar"
    say $outscalar; # prints "rab oof"
    
    # the "normal" behaviour of `reverse`
    my @inlist = qw(foo bar);
    @outlist = reverse @inlist;
    say join(" | ", @outlist); # prints "bar | foo"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This code triggers the complaint below: #!/usr/bin/perl use strict; use warnings; my $s =
Consider the following code and its output: Code #!/usr/bin/perl -w use strict; use Data::Dumper;
#!usr/bin/perl use strict; use warnings; my $file_name = rem.txt; open(FILE, $file_name); while (<FILE>) {
Consider the following Perl code. #!/usr/bin/perl use strict; use warnings; $b=1; my $a=${b}; $b=2;
I have the code: #!/usr/bin/perl use strict; use WWW::Mechanize; my $url = 'http://divxsubtitles.net/page_subtitleinformation.php?ID=111292'; my
I have some simple Perl code: #!/usr/bin/perl use strict; # not in the OP,
What is the problem with the following code as root user: chpwd.pl #!/usr/bin/perl use
This code finds the difference between today and a fixed date. #!/usr/bin/perl use strict;
I have this code which works. #!/usr/bin/perl use warnings; use strict; use Net::LDAP; use
I have code like: #!/usr/bin/perl use strict; use warnings; open(IO,<source.html); my $variable = do

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.