RosettaCodeData/Task/Conditional-structures/C-Shell/conditional-structures-2.csh
2023-07-01 13:44:08 -04:00

7 lines
142 B
Tcsh

if (4 >= 6) then
echo '4 is greater than or equal to 6'
else if (4 < 6) then
echo '4 is less than 6'
else
echo '4 compares not to 6'
endif