home *** CD-ROM | disk | FTP | other *** search
/ Mega CD-ROM 1 / megacd_rom_1.zip / megacd_rom_1 / MATH / CALC_V22.ZIP / ABS.CLC next >
Text File  |  1991-01-22  |  75b  |  5 lines

  1. define abs( num ) {
  2.    if ( num < 0 ) return -num;
  3.    return num;
  4.    }
  5.