feat(Kotlin): Replace value with _val (#1254)

* ci(kotlin): Add workflow file.

* Update kotlin.yml

* style(kotlin): value -> _val

---------

Co-authored-by: Yudong Jin <krahets@163.com>
This commit is contained in:
curtishd
2024-04-10 18:09:43 +08:00
committed by GitHub
parent 39e2e1a5c1
commit 1623e3c6a8
28 changed files with 152 additions and 152 deletions
+2 -2
View File
@@ -44,7 +44,7 @@ fun main() {
println(key)
}
println("\n单独遍历值 Value")
for (value in map.values) {
println(value)
for (_val in map.values) {
println(_val)
}
}