This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Показувати повідомленяvar змінна1: String = "Привіт світ!"
var змінна2 = 42
змінна1 = "Привіт всім!"
val КОНСТАНТА1 = 3.14
var змінна3: String? = null
var змінна4: Int = 42
var результуюча_змінна: String = змінна4.toString()
fun Int.квадрат(): Int {
return this * this
}
var змінна5: Int = 5
var результуюча_змінна2: Int = змінна5.квадрат()