Last active
March 17, 2016 14:14
-
-
Save PrateekKumarSingh/d053915a65b6624fa416 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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