最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

concurrency - CML using SML-NJ --- Error: unbound structure: Test in path Test.main - Stack Overflow

programmeradmin1浏览0评论

I sucessfully compiled SML using the instructions from here and I try to execute this CML hello world program:

% cat cml_test.cm
Library
    structure Hello
is
    $cml/basis.cm
    $cml/cml.cm
    cml_test.sml

% cat cml_test.sml
structure Hello = struct
    open CML

    fun hello () = let
        val c : string chan = channel ()
        in
            spawn (fn () => TextIO.print (recv c));
            send (c, "Hello, world!\n");
            exit ()
        end

    fun main (_, argv) =
        RunCML.doit (fn () => ignore (spawn hello), NONE)
end

I tried to compile it like this:

% /work/smlnj/bin/ml-build /work/cml/cml_test.cm
Standard ML of New Jersey [Version 110.99.7.1; 64-bit; January 17, 2025]
[scanning /work/cml/cml_test.cm]
[library $cml/basis.cm is stable]
[library $cml/cml.cm is stable]
[library $cml/cml-internal.cm is stable]
[library $cml/core-cml.cm is stable]
[library $SMLNJ-BASIS/basis.cm is stable]
[library $SMLNJ-BASIS/(basis.cm):basis-common.cm is stable]
[loading /work/cml/(cml_test.cm):cml_test.sml]
[scanning 1756284-export.cm]
[scanning /work/cml/cml_test.cm]
[parsing (1756284-export.cm):1756284-export.sml]
[compiling (1756284-export.cm):1756284-export.sml]
1756284-export.sml:1.72-1.81 Error: unbound structure: Test in path Test.main
Compilation failed.

When I try to execute the print from REPL, it works:

% ./sml
Standard ML of New Jersey [Version 110.99.7.1; 64-bit; January 17, 2025]
- 1+2;
val it = 3 : int
- TextIO.print("hello\n");
[autoloading]
[library $SMLNJ-BASIS/basis.cm is stable]
[library $SMLNJ-BASIS/(basis.cm):basis-common.cm is stable]
[autoloading done]
hello
val it = () : unit
-

Any help, please ?

发布评论

评论列表(0)

  1. 暂无评论