RosettaCodeData/Task/Conditional-structures/Friendly-interactive-shell/conditional-structures-1.fish
2017-09-25 22:28:19 +02:00

8 lines
144 B
Fish

set var 'Hello World'
if test $var = 'Hello World'
echo 'Welcome.'
else if test $var = 'Bye World'
echo 'Bye.'
else
echo 'Huh?'
end