RosettaCodeData/Task/Integer-comparison/Friendly-interactive-shell/integer-comparison.fish

11 lines
129 B
Fish
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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