0

私は今何を持っていますか:

_oasis ファイル:

OASISFormat: 0.4
Name:        Count Lines
Version:     0.0.1
Synopsis:    Counts the number of lines in the project
Authors:     Bogdan Nechyporenko
License:     LGPL-2.1 with OCaml linking exception
Executable "count-lines"
  Path:       src
  BuildTools: ocamlbuild
  BuildDepends: str
  MainIs:     main.ml

ソース/main.ml:

open Str ;;

let endswith s1 s2 =
  let re = Str.regexp (Str.quote s2 ^ "$")
  in
  try ignore (Str.search_forward re s1 0); true
  with Not_found -> false

私はそれを構築するためにコマンドを実行しています:

ocaml setup.ml -build

残りは ocaml -setup によって生成されたファイルです。 ここに画像の説明を入力

そして、私が構築しているとき、次のエラーが表示されます: ここに画像の説明を入力

4

1 に答える 1