vote up 1 vote down star

I have some simple Perl code:

#!/usr/bin/perl

use strict;   # not in the OP, recommended
use warnings; # not in the OP, recommended

my $val = 1;
for ( 1 .. 100 ) {
    $val = ($val * $val + 1) % 8051;
    print ($val / 8050) . " \n";
}

But when I run it, the output is:

bash-3.2$ perl ./rand.pl
0.0002484472049689440.000621118012422360.003229813664596270.08409937888198760.92
... <snipped for brevity> ...
2919250.9284472049689440.3526708074534160.1081987577639750.2295652173913040.1839
751552795030.433540372670807bash-3.2$

Am I doing something wrong?

flag

I've always seen it as "\r\n", although I'm not sure that makes a difference. – Kai Jul 21 at 21:11
5  
All these comments about "\r\n" are bogus and have nothing to do with the issue. Perl's handling of newlines is straightforward and well documented. – Sinan Ünür Jul 21 at 21:14
1  
You only need to worry about \r\n if you set binmode() on the file handle. – Brad Gilbert Jul 21 at 21:30
1  
The question was answered properly below. However, the OP should be updated with much cleaner code, using strict and warnings. – Mark Canlas Jul 21 at 21:36
2  
perl -MO=Deparse,-p is generally very useful when trying to figure out how Perl is parsing your code. – ephemient Jul 21 at 22:20
show 2 more comments

3 Answers

vote up 17 vote down check

C:\> perldoc -f print:

Also be careful not to follow the print keyword with a left parenthesis unless you want the corresponding right parenthesis to terminate the arguments to the print--interpose a + or put parentheses around all the arguments.

Therefore, what you need is:

print( ($val / 8050) . "\n" );

or

print +($val / 8050) . "\n";

The statement you have prints the result of $val / 8050 and then concatenates "\n" to the return value of print and then discards the resulting value.

Incidentally, if you:

use warnings;

then perl will tell you:

   print (...) interpreted as function at t.pl line 5.
   Useless use of concatenation (.) or string in void context at t.pl line 5.
link|flag
Wow, I feel stupid. Makes sense though. – rlbond Jul 21 at 21:15
Nice catch! +1 – RC Jul 21 at 21:15
@rlbond Don't worry about it. Everyone gets bitten by this once in a while. On the other hand, +1 for a well written question with a succinct example. – Sinan Ünür Jul 21 at 21:25
@rlbond: No reason to feel stupid, it's definitely not a pretty aspect of perl. Baroque. – Axeman Jul 21 at 21:33
1  
@Svante: No. See w3.org/TR/html401/struct/text.html KBD: Indicates text to be entered by the user. – Sinan Ünür Jul 21 at 21:52
show 2 more comments
vote up 3 vote down

This is more of a comment than an answer, but I don't know how else to make it and the question is already answered anyway.

Note that using say instead of print neatly sidesteps the whole issue. That is,

#!/usr/bin/perl

use 5.010;
use strict;
use warnings;

my $val = 1;
for ( 1 .. 100 ) {
    $val = ($val * $val + 1) % 8051;
    say ($val / 8050);
}

works as intended without the issue even coming up. I'm still amazed at how useful say is, given it's such a tiny difference.

link|flag
+1. Good point. Not everyone has upgraded yet, though. – Sinan Ünür Jul 22 at 1:36
vote up 0 vote down

It is possible that the line is interpreted as follows

(print($val / 8050)) . " \n";

i.e. the parentheses being used as delimiters for a function argument list, with the ."\n" being silently discarded. Try:

 print( ($val/8050) . "\n" );
link|flag
That didn't work, though I didn't vote you down. Also, the word you want is "its", not "it's." – rlbond Jul 21 at 21:16
1  
@rlbond: I don't think what you said about "its" and "it's" is right. Though not a native english speaker, I think that "its" is the possesive form of "it", while "it's" is the abbreviation of "it is". So I think that Paul Dixons use of "It's" is perfectly correct. – Inshallah Jul 21 at 21:21
1  
@Inshalla: He edited the reply. it's = it is, its = that which belongs to it. – rlbond Jul 21 at 21:22
1  
You only need to worry about \r\n if you set binmode() on the file handle. – Brad Gilbert Jul 21 at 21:31
1  
I downvoted because of the \r\n red herring. In Perl -- with binmode off -- this isn't ever the issue (echoing Sinan Ünür above). Edit that out, and this is a correct response and a good line of reasoning. – clintp Jul 21 at 21:44
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.