Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
14
Task/Repeat/PowerShell/repeat.psh
Normal file
14
Task/Repeat/PowerShell/repeat.psh
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue