1 '' examples/manual/math/abs.bas 2 '' 3 '' NOTICE: This file is part of the FreeBASIC Compiler package and can't 4 '' be included in other distributions without authorization. 5 '' 6 '' See Also: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgAbs 7 '' -------- 8 9 Dim n As Integer 10 11 Print Abs( -1 ) 12 Print Abs( -3.1415 ) 13 Print Abs( 42 ) 14 Print Abs( n ) 15 16 n = -69 17 18 Print Abs( n )