Created
August 18, 2012 18:25
-
-
Save Me1000/3388879 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
echo "Hi, I'm Douglas Crockford. What do you want?"; | |
while read question | |
do | |
what="$question" | |
if [ -z "${what}" ]; then | |
echo "Stop waisting my time." | |
exit | |
else | |
echo "My code is perfect." | |
fi | |
done |
"Follow Your Heart | 学会承担 | 多思考!小不忍则乱大谋"
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Take a moment to appreciate the use of the "echo" keyword here.