quse_string : string -> bool
STRUCTURE
SYNOPSIS
Calls the PolyML.compiler on some SML code c.
DESCRIPTION
The compiler is called after c has been unquoted. Returns false if a failure occurs during parsing or execution and true otherwise.
FAILURE
Never fails.
EXAMPLE
load "smlExecute"; open smlExecute;
(* output omitted *)
> val it = () : unit

- quse_string "val x = 2";
> val x = 2: int
> val it = true: bool
- x;
> val it = 2: int

- quse_string "val _ : int = 2.0";
> poly: : error: Pattern and expression have incompatible types.
  (* output omitted *)
> val it = false: bool

- val glob = ref 0.0;
> val glob = ref 0.0: int ref
- quse_string "val _ = glob := Math.pi";
> val it = true: bool
- !glob;
> val it = 3.141592654: real
COMMENTS
The compiler runs in the context of the current PolyML namespace and modifies it.
SEEALSO
HOL  Trindemossen-1