Tutorial by Examples: blocks

summary {% extends %}: this declares the template given as an argument as the current template's parent. Usage: {% extends 'parent_template.html' %}. {% block %}{% endblock %}: This is used to define sections in your templates, so that if another template extends this one, it'll be able to...
(from official doc) fun main(args: Array<String>) { launch(CommonPool) { // create new coroutine in common thread pool delay(1000L) // non-blocking delay for 1 second (default time unit is ms) println("World!") // print after delay } println("He...

Page 3 of 3