Xuansy0127
- Total activity 4
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 2
-
Created How to use the Kts ScriptEngine in an IntelliJ IDEA plugin?
Answeredobject KtsUtil {private val engine = IdeScriptEngineManager.getInstance().getEngineByName("kotlin", null)!!fun invokeFunction(kts: String, function: String): Any {engine.eval(kts)val invoke = engin...