9 lines
107 B
Bash
Executable File
9 lines
107 B
Bash
Executable File
#!/bin/bash
|
|
read -rp "Enter guess: " num
|
|
if [[ $num -eq 42 ]]
|
|
then
|
|
echo "Correct"
|
|
else
|
|
echo "Wrong"
|
|
fi
|