_ADLER32
Jump to navigation
Jump to search
The _ADLER32 function returns the Adler-32 checksum of a string.
Syntax
- chksum~& = _ADLER32(dataString$)
Parameters
- chksum~& is the _UNSIGNEDLONG checksum returned (zero, if the given dataString$ was empty).
- dataString$ is any literal or variable STRING to build the checksum from.
Description
Examples
- Example
- Calculating the area of a circle using a SINGLE variable in this case.
radius = 5 circlearea = _PI(radius ^ 2) PRINT circlearea |
78.53982 |
See also