Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== main ====== ===== Точка входа в программу ===== Точкой входа в приложение Kotlin является основная функция **main**: <code kotlin> fun main() { println("Hello world!") } </code> Есть вариант с параметрами: <code kotlin> fun main(args: Array<String>) { println(args.contentToString()) } </code> kotlin/main.txt Last modified: 2026/03/24 15:18