Kenya Built In Types Example

Below is an example program demonstrating the special syntax for Kenya's built-in types.

Example 2.2. Types Example

void main(){

	String hi = "Hello World";
	char c = '\t';
	boolean bob = false;
	int x = 30;
	
	if( hi == "Hello World" ){
		print( "The result was: " + true + '\t' + "\n\t\t ok.");
	}
}