programming-examples/perl/SystemFunction/Get the absolute value.pl

3 lines
56 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
$s = -5;
print "The absolute value of $s = ", abs $s;