PowerShell - Modules and Script Organization
Given a module
What will be the output of this code?
MathTools with a function Multiply-Numbers defined as:function Multiply-Numbers { param($x, $y) return $x * $y }What will be the output of this code?
Import-Module MathTools
Multiply-Numbers -x 4 -y 6
