Further code improvements during review
This commit is contained in:
+1
-1
@@ -2,5 +2,5 @@
|
||||
fun main() {
|
||||
val list = 1..4
|
||||
|
||||
list.forEach {(x: Int) -> x }
|
||||
list.forEach { x: Int -> x }
|
||||
}
|
||||
+1
-1
@@ -2,5 +2,5 @@
|
||||
fun main() {
|
||||
val list = 1..4
|
||||
|
||||
list.forEach {(x: Int) -> 11 }
|
||||
list.forEach { x: Int -> 11 }
|
||||
}
|
||||
Reference in New Issue
Block a user