All Downloads are FREE. Search and download functionalities are using the official Maven repository.

examples.hello.kt Maven / Gradle / Ivy

fun main(args: Array) {

	var x=1000000

	var sum=0

	while (x > 0)
	{
		x--
		sum = inc(sum)
	}			

	println("sum " + sum)
}

fun inc(x: Int): Int
{
	return x+1
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy