Skip to content

Instantly share code, notes, and snippets.

@PrateekKumarSingh
Last active March 17, 2016 14:14
Show Gist options
  • Save PrateekKumarSingh/d053915a65b6624fa416 to your computer and use it in GitHub Desktop.
Save PrateekKumarSingh/d053915a65b6624fa416 to your computer and use it in GitHub Desktop.
Function Start-Recursion($Times, $Upto)
{
If($Times -gt $Upto){$Times;Start-Recursion($Times-1)}else{break}
}
Start-Recursion 100 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment