11 lines
129 B
Fish
11 lines
129 B
Fish
|
|
read a
|
||
|
|
read b
|
||
|
|
|
||
|
|
if test $a -gt $b
|
||
|
|
echo Greater
|
||
|
|
else if test $a -lt $b
|
||
|
|
echo Less
|
||
|
|
else if test $a -eq $b
|
||
|
|
echo Equal
|
||
|
|
end
|