while and do loops

while and do loops are standard C-style loops:

var i = 1

while (i <= 10) {
println("i = $i")
i++
}

do {
i--
println("i = $i")
} while (i > 0)

Now that you have all the basic pieces you have everything that you need to read and understand the contents of this book.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.138.36.38