We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21ff36a commit 71ef3a7Copy full SHA for 71ef3a7
1 file changed
docs/abs.md
@@ -3,20 +3,20 @@
3
## Syntax
4
5
6
-```
+```basic
7
ABS(numericExpression)
8
```
9
10
11
## Description
12
13
Returns the absolute value of the given argument.
14
-Argument must be a numeric expression. Returned value has the same type as the input argument.
+Argument must be a numeric expression. The returned value has the same type as the input argument.
15
16
## Examples
17
18
19
20
REM Absolute value
21
LET a = -1
22
PRINT "Absolute value of a is "; ABS(a)
0 commit comments