
4.7.8 The ValuePrinter structure
Shell.Options.ValuePrinter
val showFnDetails: bool option
true, the results of each subsequently defined function declaration include the line-and-column location in the listener or source file at which the function was defined. The default setting is false.
showFnDetails set to false, and set to true:
MLWorks> set (showFnDetails, false); val it : unit = () MLWorks> val foo = fn x => x + 1; val foo : int -> int = fn MLWorks> set (showFnDetails, true); val it : unit -> () MLWorks> val foo = fn x => x + 1; val foo : int = fn[<anon>[<Listener #1>:1,11 to 1,23]] MLWorks>

Generated with Harlequin WebMaker