On 3 Oct 2011, at 16:08, Hong Feng wrote: > Hello, > > I am trying to write a simple CGI program using Poly/ML. Is it > possible to turn off the Poly/ML's type prompt message in the output?
The prompts are held in variables that you can assign to. The following will do what you are asking for: PolyML.Compiler.prompt1 := ""; PolyML.Compiler.prompt2 := ""; You will still get the banner message when it starts. You might also like to think about turning your program into a stand-alone application, see http://www.polyml.org/FAQ.html#standalone Regards, Rob.
_______________________________________________ polyml mailing list [email protected] http://lists.inf.ed.ac.uk/mailman/listinfo/polyml
