Posts by Goiaba • 85 points
1 post
-
8
votes3
answers8606
viewsQ: Switch case Kotlin
In Java I use the switch in various situations, as in the example below: public class SwitchDemo { public static void main(String[] args) { int month = 8; String monthString; switch (month) { case…