Integer comparison: Difference between revisions

Content deleted Content added
m Changed over to works with template
Ce (talk | contribs)
→‎{{header|Korn Shell}}: Corrected example (the old version had the same semantic, but didn't meet the task's requirements)
Line 265:
if (( a < b )) ; then
printf "%d is less than %d\n" a b
fi
elifif (( a == b )) ; then
printf "%d is equal to %d\n" a b
elsefi
if (( a > b )) ; then
printf "%d is greater than %d\n" a b
fi