Conditionals

Kenya has an if ... then ... else construct with the following syntax:

int a = 2;

if ( a == 2 )
{
  println( "a equals 2" );
}
  else
{
  println( "a does not equal 2" )
}