Skip to content

Instantly share code, notes, and snippets.

@goFrendiAsgard
Created January 12, 2020 05:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goFrendiAsgard/224526885317272c83a2a3cc553c7673 to your computer and use it in GitHub Desktop.
Save goFrendiAsgard/224526885317272c83a2a3cc553c7673 to your computer and use it in GitHub Desktop.
#!/bin/sh
NILAI=50
if [ $NILAI -gt 90 ]
then
echo "Gold"
elif [ $NILAI -gt 70 ]
then
echo "Silver"
else
echo "Bronze"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment