I wonder if there is any way that I can make SML print each recursion out? I am having problem with a function I wrote and that would be very helpful!
I am using Emacs if it matters.
Thanks!
|
I wonder if there is any way that I can make SML print each recursion out? I am having problem with a function I wrote and that would be very helpful! I am using Emacs if it matters. Thanks! |
|||||
|
|
You can have several expressions in a row in sml by putting semicolons between them and surrounding the entire thing with parentheses, like this:
The result of the last expression is the only one that is kept - the others are just thrown away. However, you can have an expression with side effects, such as print, and then the thing you actually want to do after.
|
|||
|
|
|
Do you mean something like this?
(Although, in all honesty, I would try to put the printing logic in |
|||
|
|