Puppet Function: math::square
- Defined in:
- functions/square.pp
- Function type:
- Puppet Language
Summary
Squares a numberOverview
Note:
puppet has a integer size limit so some values may not work and return a Puppet::ParseError
7 8 9 |
# File 'functions/square.pp', line 7 function math::square(Numeric $value) >> Numeric { $value * $value } |