Created
November 29, 2016 19:39
-
-
Save dani8190/0b6647e4dfdaebfc0e2d32a2f7bf426c to your computer and use it in GitHub Desktop.
Random matrix generator for powershell
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
while($true){ | |
for($i = 0; $i -le 150; $i++){ | |
$ran = get-random -inputobject (10..90); | |
$char = [char]$ran; | |
write-host $char[$ran] -nonewline; | |
} | |
write-host ""; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment