fun main(args: Array<String>) {     for (str in args) {         try {             val parsedInt = str.toInt()             println("The parsed int is $parsedInt")         } catch (nfe: NumberFormatException) {             // not a valid int         }     } } 

Read more of this post