Perl Cd Bookshelf [Electronic resources]

نسخه متنی -صفحه : 875/ 173
نمايش فراداده

8.125. integer

Pragma that tells the compiler to use integer operations from here to the end of the enclosing block. Improves processing time on systems without floating-point hardware support.

use integer; $x = 10/3; # $x is now 3, not 3.33333333333333333

Use the no integer directive to turn off integer inside an inner block.


8.124. if8.126. IO


Copyright © 2002 O'Reilly & Associates. All rights reserved.