how to make below star program * ** *** **** ***** I used below code : for (i in 1..5) { for (j in 1..i) { print("*") } println() } So ,Is there any other way in kotlin to make that?