Подпрограммы (Kotlin)
Версия от 09:35, 29 июня 2021; Безуглов Сергей (обсуждение | вклад) (Новая страница: «== Функции == * [https://kotlinlang.org/docs/functions.html Функции (справка JetBrains)] <syntaxhighlight lang="kotlin" line> fun hello(name...»)
Функции
1 fun hello(name: String) {
2 println("Hello $name!")
3 }
4
5 fun add(a: Int,b: Int):Int {
6 return a + b;
7 }
8
9 fun main(args: Array<String>) {
10 hello("Jack");
11
12 print("2 + 3 = ${add(2,3)}")
13 }