Created
October 3, 2014 20:20
-
-
Save icemancast/7b89f7aa3d9325ee18d6 to your computer and use it in GitHub Desktop.
count dracula program to count
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
<?php | |
$count = 0; | |
do { | |
$count++; | |
echo `say $count . ' bat... ah ah'`; | |
} while($count < 5); | |
sleep(1); | |
echo `say 'we have ' . $count 'bats.... ah ah ah ah ah ahhhhhhhh'`; | |
echo `say 'thunder.... boom'`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment