We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 010f101 commit 10f4561Copy full SHA for 10f4561
KotlinSample/src/Main.kt
@@ -1,3 +1,5 @@
1
fun main() {
2
- println("Hello World!")
+ val aToZ = 'a'..'z'
3
+ println('c' in aToZ)
4
+ aToZ.forEach { print(it) }
5
}
0 commit comments