programming-examples/perl/SystemFunction/Get the absolute value.pl
2019-11-15 12:59:38 +01:00

3 lines
56 B
Perl

$s = -5;
print "The absolute value of $s = ", abs $s;