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.

14 lines
352 B
Perl

Perl numeric data types.
Type Example
Integer 123
Floating 1.23
Scientific 1.23E4
Hex 0x123
Octal 0123
Binary 0b101010
Underlines 1_234_567
The underlined formats digits in a number in groups, such as 1,234,567
$variable1 = 1_234_567;