This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fun main() { | |
| var season = "!" | |
| // Write your code below | |
| when (season) { | |
| "Winter" -> println("Grow kale.") | |
| "Spring" -> println("Grow lettuce.") | |
| "Summer" -> println("Grow corn.") | |
| "Fall" -> println("Grow pumpkins.") | |
| else -> println("Not a valid season.") | |
| } |