Skip to content

Instantly share code, notes, and snippets.

@shaneis
Created August 27, 2018 21:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shaneis/5e54f1195b4ace892c61eb100f358ea8 to your computer and use it in GitHub Desktop.
Save shaneis/5e54f1195b4ace892c61eb100f358ea8 to your computer and use it in GitHub Desktop.
V.Simple
#region Test-ManualPause
function Test-ManualPause {
[CmdletBinding()]
param(
[int[]]$Numbers
)
process {
foreach ($num in $Numbers) {
Pause
"Current number: [$num]"
}
}
}
Test-ManualPause -Numbers $Numbers
#endregion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment