I want to do this: ```kotlin class MainActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) kscript.eval("val x =3") val result = kscript.eval("x+2") Log.d("test", "onCreate: result=$result") } } ``` can kscript achieve this? thanks for reading my stupid question.