如何从SML中的另一个文件导入相对于导入程序的路径?

时间:2018-05-30 01:20:51

标签: sml smlnj

我使用的是SML / NJ,我需要使用另一个文件f1.sml内某个文件f2.sml中的一组函数。

但是,我没有直接运行f2.sml,而是我从其他地方导入。

如果我使用use中的f2.sml命令以f1.sml相对于f2.sml透视图的路径,那么在我导入f2.sml时,它将会从运行脚本的角度查找提供的路径。

我不能使用绝对路径,我不想合并这两个文件的内容。

很抱歉,如果这是一个简单的语言应用程序,但我是SML的新手,但还没有找到答案。

1 个答案:

答案 0 :(得分:7)

我建议使用SML/NJ's Compilation Manager(CM)。它是SML / NJ上下文中SML代码的构建系统。如果你需要more advanced features,它会变得非常复杂,但它很容易上手。我会告诉你一个准系统结构,你可以根据需要进行调整。它已经安装了SML / NJ,因此没有安装过程。

我将在此示例中使用以下目录结构(不强加文件扩展名,只是约定):

.
├── build.cm
└── src
    ├── foo.fun
    ├── foo.sig
    └── main.sml

build.cm

group
  (* CM allows you to selectively export defined modules (structures,
     signatures and functors) by listing them here. It's useful for
     libraries. *)

  source (-)       (* export all defined modules *)

  structure Main   (* OR, export selectively *)
  signature FOO
  functor Foo
is
  (* Import the SML standard library, aka Basis.  *)
  (* See: http://sml-family.org/Basis/ *)
  $/basis.cm

  (* Import the SML/NJ library *)
  (* Provides extra data structures and algorithms. *)
  (* See: https://www.smlnj.org/doc/smlnj-lib/Manual/toc.html *)
  $/smlnj-lib.cm

  (* List each source file you want to be considered for compilation. *)
  src/main.sml
  src/foo.sig
  src/foo.fun

的src / main.sml

structure Main =
  struct
    (* You don't have to import the `Foo` functor. *)
    (* It's been done in build.cm already. *)
    structure F = Foo()

    fun main () =
      print (F.message ^ "\n")
  end

的src / foo.sig

signature FOO =
  sig
    val message : string
  end

的src / foo.fun

(* You don't have to import the `FOO` signature. *)
(* It's been done in build.cm already. *)
functor Foo() : FOO =
  struct
    val message = "Hello, World!"
  end

用法

结构到位后,您可以使用CM.make开始编译并通过调用您定义的任何函数来运行:

$ sml
Standard ML of New Jersey v110.82 [built: Tue Jan  9 20:54:02 2018]
- CM.make "build.cm";
val it = true : bool
-
- Main.main ();
Hello, World!
val it = () : unit