You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
271 B
Perl

$_ = -2;
print "Absolute value of 5 is: ", abs( 5 ), "\n",
"Absolute value of -5 is: ", abs( -5 ), "\n",
"Absolute value of $_: ", abs, "\n\n";
print "exp( $_ ): ", exp, "\n";
print "log( 5 ): ", log( 5 ), "\n";
print "sqrt( 16 ): ", sqrt( 16 ), "\n";