diff --git a/main.kt b/main.kt index 11ce4a3..0787d7b 100644 --- a/main.kt +++ b/main.kt @@ -1,5 +1,40 @@ package my.program + +// L4: Function. + +fun memory_generateConstPlayfield( + n: Int +): Map { + var idGroups: MutableMap = mutableMapOf() + var id = 0 + for (gid in 0..) { - println("Hello, World from Kotlin") + println(test_memory_generateConstPlayfield()) }