Home
Perl
Array
CGI
Class
Data Type
Database
File
GUI
Hash
Language Basics
Network
Regular Expression
Report
Statement
String
Subroutine
System Functions
Win32
XML
Menu
Get the absolute value : abs « System Functions « Perl
Perl
System Functions
abs
Get the absolute value
$s = -5; print
"The absolute value of $s = "
, abs $s;
Related examples in the same category