abs
Returns the absolute value of its argument.
Returns the absolute value of EXPR, or $_ if omitted. Preserves the
numeric type: integers remain integers (Iv), floats remain floats (Nv).
Synopsis
my $n = abs(-42); # 42
my $n = abs($x);
my $n = abs; # abs($_)