I am currently using PolyML 5.5.2, and trying to create a runtime compiler function that takes a string and runs it.
The desired function should be like
fun eval string -> unit
when input
>eval "val a=1;";
val a = 1: int
I have done some research that in old version there is a function like PolyML.compilerEx but it seems there is no such thing in PolyML 5.5.2.
Many thanks to all.