RosettaCodeData/Task/Conditional-structures/Friendly-interactive-shell/conditional-structures-1.fish

9 lines
144 B
Fish
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
set var 'Hello World'
if test $var = 'Hello World'
echo 'Welcome.'
else if test $var = 'Bye World'
echo 'Bye.'
else
echo 'Huh?'
end