A2osX/TESTS/IFLEVEL.txt
2019-03-03 21:43:07 -05:00

40 lines
695 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

NEW
PREFIX
AUTO 4,1
#!/BIN/SH
#
# If Level test
#
READ -P "Enter a number 1 through 7: " ANum
IF [ $ANum = "1" ]
ECHO "1 Typed"
ELSE
IF [ $ANum = "2" ]
ECHO "2 Typed"
ELSE
IF [ $ANum = "3" ]
ECHO "3 Typed"
ELSE
IF [ $ANum = "4" ]
ECHO "4 Typed"
ELSE
IF [ $ANum = "5" ]
ECHO "5 Typed"
ELSE
IF [ $ANum = "6" ]
ECHO "6 Typed"
ELSE
IF [ $ANum = "7" ]
ECHO "7 Typed"
ELSE
ECHO "Bad Choice Typed"
FI
FI
FI
FI
FI
FI
FI
MAN
TEXT /MAKE/USR/SHARE/TESTS/IFLEVEL