Created
February 2, 2016 01:00
-
-
Save huseyin/18f458eec76f74300ec8 to your computer and use it in GitHub Desktop.
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
sayitahmin() { | |
sayi=$RANDOM | |
while true; do | |
printf "Tahmin: "; read tahmin | |
if [ $tahmin -eq $sayi ]; then | |
echo Doğru tahmin | |
exit 0 | |
else | |
echo Yanlış tahmin | |
fi | |
done | |
} | |
trap sayitahmin 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment