Created
March 13, 2019 14:46
-
-
Save jrwarwick/07ac46bb6cc5bccba166193c5b2d328b to your computer and use it in GitHub Desktop.
Demo: Computers are Fast at Counting and Simple Math
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
$multiple = 2 | |
$currentNumber = 1 | |
while ($currentNumber -lt 562949953421310) { | |
$currentNumber = $currentNumber * $multiple | |
$currentNumber | |
} | |
$vox = New-Object -com SAPI.spvoice | |
$vox.speak("Sorry, too late. I have already reached $($currentNumber). As you can see, computers really are amazingly, blazingly fast.") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment