Skip to content
This repository was archived by the owner on Aug 27, 2021. It is now read-only.
JBtje edited this page Sep 17, 2015 · 2 revisions

Syntax

ABS( <integer> )

Description

The ABS command will return the absolute value.

Example

NEW
10 A = -10
20 PRINT A * 10
20 PRINT ABS( A * 10 )

Returns:

-100
100

Clone this wiki locally