15 lines
242 B
PowerShell
15 lines
242 B
PowerShell
|
|
function Out-Example
|
||
|
|
{
|
||
|
|
"Example"
|
||
|
|
}
|
||
|
|
|
||
|
|
function Step-Function ([string]$Function, [int]$Repeat)
|
||
|
|
{
|
||
|
|
for ($i = 1; $i -le $Repeat; $i++)
|
||
|
|
{
|
||
|
|
"$(Invoke-Expression -Command $Function) $i"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
Step-Function Out-Example -Repeat 3
|