Code to print A to Z letters in Kotlin? All Questions › Category: Kotlin › Code to print A to Z letters in Kotlin? 0 Vote Up Vote Down chetan shidling asked 4 years ago I need code. 1 Answers 0 Vote Up Vote Down chetan shidling answered 4 years ago Here is the code to print A to Z letters in Kotlin. fun main(args : Array<String>){var nums = ‘A’..’Z’ for(a in nums){println(a)} println(“Couts is ” +nums.count())} Output: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z Couts is 26