include.kt
import "System.vm.compiler";
script = System.vm.compiler|compileFile("other.kt");
make script();
|
other.kt
"message"|print; |
import "System.vm.compiler";
script = System.vm.compiler|compileFile("other.kt");
make script();
|
"message"|print; |