home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / autoit-v3-setup.exe / Examples / Round.au3 < prev    next >
Encoding:
Text File  |  2004-09-22  |  110 b   |  4 lines

  1. $x = Round(-1.582, 1)  ;returns -1.6
  2. $y = Round(3.1415, 9)  ;no change
  3. $z = round(123.5, -1)  ;returns 120
  4.