Created
December 22, 2021 11:06
-
-
Save Lucy-vP/30a847dc1ffa90ee41c7d2ef36f6f487 to your computer and use it in GitHub Desktop.
This file contains 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
$global:counter = 0 | |
function SnowFlake ($toomuch) { | |
$counter++ | |
' ' * (Get-Random -Minimum 0 -Maximum 42) + '*' | |
sleep -m 100 | |
if ($counter -ge $toomuch ) { break } | |
SnowFlake $toomuch | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment