Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SML に各再帰を出力させる方法はあるのだろうか? 私が書いた関数に問題があり、それは非常に役に立ちます!
問題があればEmacsを使用しています。
ありがとう!
次のように、式の間にセミコロンを入れて全体を括弧で囲むことにより、sml で複数の式を連続して使用できます。
(exp1;exp2;exp3)
最後の式の結果だけが保持され、他の式は破棄されます。ただし、print などの副作用を伴う式を作成してから、実際に実行したいことを作成できます。
fun useless x = (print "Hey, there\n";x+2)