home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / calculat / 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.