first commit

This commit is contained in:
wanglihui
2020-06-28 18:27:48 +08:00
parent 6f86960a70
commit 9ffe686f3f
34 changed files with 3310 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package cn.ac.iie
object TestMap {
def main(args: Array[String]): Unit = {
var mapTest: Map[String, Int] = Map[String,Int]()
mapTest += ("1" -> 1)
println(mapTest.size)
}
}