Create some new standard library modules

This commit is contained in:
2020-03-13 13:36:50 +01:00
parent a5fba7e8b1
commit 264100eef1
12 changed files with 82 additions and 18 deletions

View File

@@ -0,0 +1,9 @@
package io.smnp.ext
import org.pf4j.Extension
@Extension
class CollectionModule : LanguageModuleProvider("smnp.collection") {
override fun files() = listOf("list.mus")
override fun dependencies() = listOf("smnp.lang")
}