RosettaCodeData/Task/Conditional-structures/Friendly-interactive-shell/conditional-structures-1.fish
2023-07-01 13:44:08 -04: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