Someone mentioned this to me earlier: Is it possi...
# scripting
j
Someone mentioned this to me earlier: Is it possible to use KotlinX serialization in a
*.main.kts
? It would be incredibly useful.
e
v
It indeed is possible, but only if you do not need the compiler plugin. So for things that have built-in serializers or libs with serializers or similer, or if you just want a generic node-tree as result, it works just fine. You "just" cannot invent new serializable classes.
👍 2