开发者

Increasing the print depth in SML/NJ

开发者 https://www.devze.com 2023-02-12 09:49 出处:网络
I\'m trying to get SML/NJ to print out a result at the top level without putting # signs everywhere. According to some old docs (and a post to this newsgroup on 2001), it

I'm trying to get SML/NJ to print out a result at the top level without putting # signs everywhere.

According to some old docs (and a post to this newsgroup on 2001), it should be possible to use Compiler.Control.Print.printDepth

However, on SML/NJ version 110.7, this just gives an error:开发者_如何学JAVA

- Compiler.Control.Print.printDepth := 100;
stdIn:1.1-30.8 Error: unbound structure: Control in path Compiler.Control.Print.printDepth


You might wan't to be more precise in the future. You could for example give some sample output and a link to where you found the above.

If I understand your problem correct, then the last line below is your problem? (code snippet

- datatype tree = leaf | node of int * tree * tree;
datatype tree = leaf | node of int * tree * tree 

- val t = node (1, node (2, node (3, leaf, leaf), leaf), leaf);
val t = node (1,node (2,node #,leaf),leaf) : tree 

Then the Control.Print structure is what you are looking for. So just drop the Compiler part and use

Control.Print.printDepth := 100;

Do note that this is SML/NJ specific and not ml-yacc as such.

0

精彩评论

暂无评论...
验证码 换一张
取 消