Suppress “val it” output in Standard ML












9















I'm writing a "script" in Standard ML (SML/NJ) that sets up the interactive environment to my liking. The last thing the script does is print out a message indicating everything went smoothly. Essentially, the last line is this:



print "SML is ready.n";


When I run the script, all goes well but the SML interpreter displays the return value from the print function.



SML is ready.
val it = () : unit
-


Since I'm merely printing something to the screen, how can I suppress the "val it = () : unit" output so that all I see is the "SML is ready" message followed by the interpreter prompt?










share|improve this question





























    9















    I'm writing a "script" in Standard ML (SML/NJ) that sets up the interactive environment to my liking. The last thing the script does is print out a message indicating everything went smoothly. Essentially, the last line is this:



    print "SML is ready.n";


    When I run the script, all goes well but the SML interpreter displays the return value from the print function.



    SML is ready.
    val it = () : unit
    -


    Since I'm merely printing something to the screen, how can I suppress the "val it = () : unit" output so that all I see is the "SML is ready" message followed by the interpreter prompt?










    share|improve this question



























      9












      9








      9


      1






      I'm writing a "script" in Standard ML (SML/NJ) that sets up the interactive environment to my liking. The last thing the script does is print out a message indicating everything went smoothly. Essentially, the last line is this:



      print "SML is ready.n";


      When I run the script, all goes well but the SML interpreter displays the return value from the print function.



      SML is ready.
      val it = () : unit
      -


      Since I'm merely printing something to the screen, how can I suppress the "val it = () : unit" output so that all I see is the "SML is ready" message followed by the interpreter prompt?










      share|improve this question
















      I'm writing a "script" in Standard ML (SML/NJ) that sets up the interactive environment to my liking. The last thing the script does is print out a message indicating everything went smoothly. Essentially, the last line is this:



      print "SML is ready.n";


      When I run the script, all goes well but the SML interpreter displays the return value from the print function.



      SML is ready.
      val it = () : unit
      -


      Since I'm merely printing something to the screen, how can I suppress the "val it = () : unit" output so that all I see is the "SML is ready" message followed by the interpreter prompt?







      sml smlnj






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Aug 12 '09 at 18:08







      Barry Brown

















      asked Aug 12 '09 at 9:30









      Barry BrownBarry Brown

      13.5k116098




      13.5k116098
























          3 Answers
          3






          active

          oldest

          votes


















          12





          +100









          To surpress the SML-NJ prompt and response, use the following assignment.



          Compiler.Control.Print.out := {say=fn _=>(), flush=fn()=>()};
          print "I don't show my type";

          I don't show my type


          although I don't see why the print function returning the type is bad.



          The say function controls what is printed out.



          There is a larger example in the following SML/NJ notes http://www.cs.cornell.edu/riccardo/prog-smlnj/notes-011001.pdf



          The useSilently function can be used to load a file but without displaying any output
          associated with the loading



          fun useSilently (s) = let
          val saved = !Compiler.Control.Print.out
          fun done () = Compiler.Control.Print.out := saved
          in
          Compiler.Control.Print.out := {say = fn _ => (), flush = fn () => ()}
          (use (s); done ()) handle _ => done ()
          end


          This is essentially changing the say function to do nothing and then setting it back at the end.






          share|improve this answer

































            3














            Use this:



            val _ = print "I don't show my type";





            share|improve this answer

































              1














              In Moscow ML you can run the REPL without declaration output with



              mosml -quietdec file.sml





              share|improve this answer























                Your Answer






                StackExchange.ifUsing("editor", function () {
                StackExchange.using("externalEditor", function () {
                StackExchange.using("snippets", function () {
                StackExchange.snippets.init();
                });
                });
                }, "code-snippets");

                StackExchange.ready(function() {
                var channelOptions = {
                tags: "".split(" "),
                id: "1"
                };
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function() {
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled) {
                StackExchange.using("snippets", function() {
                createEditor();
                });
                }
                else {
                createEditor();
                }
                });

                function createEditor() {
                StackExchange.prepareEditor({
                heartbeatType: 'answer',
                autoActivateHeartbeat: false,
                convertImagesToLinks: true,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: 10,
                bindNavPrevention: true,
                postfix: "",
                imageUploader: {
                brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                allowUrls: true
                },
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                });


                }
                });














                draft saved

                draft discarded


















                StackExchange.ready(
                function () {
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f1265171%2fsuppress-val-it-output-in-standard-ml%23new-answer', 'question_page');
                }
                );

                Post as a guest















                Required, but never shown

























                3 Answers
                3






                active

                oldest

                votes








                3 Answers
                3






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                12





                +100









                To surpress the SML-NJ prompt and response, use the following assignment.



                Compiler.Control.Print.out := {say=fn _=>(), flush=fn()=>()};
                print "I don't show my type";

                I don't show my type


                although I don't see why the print function returning the type is bad.



                The say function controls what is printed out.



                There is a larger example in the following SML/NJ notes http://www.cs.cornell.edu/riccardo/prog-smlnj/notes-011001.pdf



                The useSilently function can be used to load a file but without displaying any output
                associated with the loading



                fun useSilently (s) = let
                val saved = !Compiler.Control.Print.out
                fun done () = Compiler.Control.Print.out := saved
                in
                Compiler.Control.Print.out := {say = fn _ => (), flush = fn () => ()}
                (use (s); done ()) handle _ => done ()
                end


                This is essentially changing the say function to do nothing and then setting it back at the end.






                share|improve this answer






























                  12





                  +100









                  To surpress the SML-NJ prompt and response, use the following assignment.



                  Compiler.Control.Print.out := {say=fn _=>(), flush=fn()=>()};
                  print "I don't show my type";

                  I don't show my type


                  although I don't see why the print function returning the type is bad.



                  The say function controls what is printed out.



                  There is a larger example in the following SML/NJ notes http://www.cs.cornell.edu/riccardo/prog-smlnj/notes-011001.pdf



                  The useSilently function can be used to load a file but without displaying any output
                  associated with the loading



                  fun useSilently (s) = let
                  val saved = !Compiler.Control.Print.out
                  fun done () = Compiler.Control.Print.out := saved
                  in
                  Compiler.Control.Print.out := {say = fn _ => (), flush = fn () => ()}
                  (use (s); done ()) handle _ => done ()
                  end


                  This is essentially changing the say function to do nothing and then setting it back at the end.






                  share|improve this answer




























                    12





                    +100







                    12





                    +100



                    12




                    +100





                    To surpress the SML-NJ prompt and response, use the following assignment.



                    Compiler.Control.Print.out := {say=fn _=>(), flush=fn()=>()};
                    print "I don't show my type";

                    I don't show my type


                    although I don't see why the print function returning the type is bad.



                    The say function controls what is printed out.



                    There is a larger example in the following SML/NJ notes http://www.cs.cornell.edu/riccardo/prog-smlnj/notes-011001.pdf



                    The useSilently function can be used to load a file but without displaying any output
                    associated with the loading



                    fun useSilently (s) = let
                    val saved = !Compiler.Control.Print.out
                    fun done () = Compiler.Control.Print.out := saved
                    in
                    Compiler.Control.Print.out := {say = fn _ => (), flush = fn () => ()}
                    (use (s); done ()) handle _ => done ()
                    end


                    This is essentially changing the say function to do nothing and then setting it back at the end.






                    share|improve this answer















                    To surpress the SML-NJ prompt and response, use the following assignment.



                    Compiler.Control.Print.out := {say=fn _=>(), flush=fn()=>()};
                    print "I don't show my type";

                    I don't show my type


                    although I don't see why the print function returning the type is bad.



                    The say function controls what is printed out.



                    There is a larger example in the following SML/NJ notes http://www.cs.cornell.edu/riccardo/prog-smlnj/notes-011001.pdf



                    The useSilently function can be used to load a file but without displaying any output
                    associated with the loading



                    fun useSilently (s) = let
                    val saved = !Compiler.Control.Print.out
                    fun done () = Compiler.Control.Print.out := saved
                    in
                    Compiler.Control.Print.out := {say = fn _ => (), flush = fn () => ()}
                    (use (s); done ()) handle _ => done ()
                    end


                    This is essentially changing the say function to do nothing and then setting it back at the end.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Aug 17 '09 at 17:01

























                    answered Aug 15 '09 at 19:17









                    pjppjp

                    12.5k32851




                    12.5k32851

























                        3














                        Use this:



                        val _ = print "I don't show my type";





                        share|improve this answer






























                          3














                          Use this:



                          val _ = print "I don't show my type";





                          share|improve this answer




























                            3












                            3








                            3







                            Use this:



                            val _ = print "I don't show my type";





                            share|improve this answer















                            Use this:



                            val _ = print "I don't show my type";






                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited Jan 18 '13 at 1:32









                            Andreas Rossberg

                            27.1k24865




                            27.1k24865










                            answered Jan 17 '13 at 22:14









                            VerbalVerbal

                            311




                            311























                                1














                                In Moscow ML you can run the REPL without declaration output with



                                mosml -quietdec file.sml





                                share|improve this answer




























                                  1














                                  In Moscow ML you can run the REPL without declaration output with



                                  mosml -quietdec file.sml





                                  share|improve this answer


























                                    1












                                    1








                                    1







                                    In Moscow ML you can run the REPL without declaration output with



                                    mosml -quietdec file.sml





                                    share|improve this answer













                                    In Moscow ML you can run the REPL without declaration output with



                                    mosml -quietdec file.sml






                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered Nov 16 '18 at 6:58









                                    Simon ShineSimon Shine

                                    9,92413049




                                    9,92413049






























                                        draft saved

                                        draft discarded




















































                                        Thanks for contributing an answer to Stack Overflow!


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid



                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.


                                        To learn more, see our tips on writing great answers.




                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function () {
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f1265171%2fsuppress-val-it-output-in-standard-ml%23new-answer', 'question_page');
                                        }
                                        );

                                        Post as a guest















                                        Required, but never shown





















































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown

































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown







                                        Popular posts from this blog

                                        Xamarin.iOS Cant Deploy on Iphone

                                        Glorious Revolution

                                        Dulmage-Mendelsohn matrix decomposition in Python