Assignments

Report a typo

Given four variables. Assign values to these variables.

The variable one should be 1, two should be 2, three should be 3, and four should be 4.

Don't mind code quality, just complete the task. You will soon find out how to optimize it.

Write a program in Kotlin
fun main() {
val one
val two
val three
val four = 400
println("$one $two $three $four")
}
___

Create a free account to access the full topic