in reply to Re^4: bignum and parenthesis
in thread bignum and parenthesis
I see you haven't read perlfunc yet.
is equivalent toprint ( 2**3 - 1 )**( 2**7 - 1 ) % ( 2**19 - 1 )
and not the( print ( 2**3 - 1 ) )**( 2**7 - 1 ) % ( 2**19 - 1 )
that you think it is.print( ( 2**3 - 1 )**( 2**7 - 1 ) % ( 2**19 - 1 ) )
UPDATE: added the word "unary"
|
---|