RosettaCodeData/Task/Integer-comparison/ChucK/integer-comparison.chuck
2016-12-05 23:44:36 +01:00

8 lines
287 B
Text

fun void intComparison (int one, int two)
{
if(one < two) <<< one, " is less than ", two >>>;
if(one == two) <<< one, " is equal than ", two >>>;
if(one > two) <<< one, " is greater than ", two >>>;
}
// uncomment next line and change values to test
// intComparison (2,4);