Numbers
Numbers in the Puppet language are normal integers and floating point numbers.
You can work with numbers using arithmetic operators.
Numbers are written without quotation marks, and can consist only of:
Digits.
An optional negative sign (
-
). This is actually the unary negation operator rather than part of the number. Explicit positive signs (+
) aren’t allowed.An optional decimal point, which results in a floating point value.
An optional
e
orE
for scientific notation of floating point values.An
0
prefix for octal base, or0x
or0X
prefix hexidecimal base.