One after another

Report a typo

Write a program that:
1) if args size < 3, calls main (args: Array < String >) with the args input argument. args contains three elements: first, second, and third;

2) otherwise prints args elements - each on a new line.

Write a program in Kotlin
fun main(args: Array<String>) {
TODO()
}
___

Create a free account to access the full topic