我在github项目所在的目录中安装了gitflow。
但是,当我尝试从命令“ git flow init” 开始时,出现以下错误消息:
git flow init
C:/cygwin64/usr/local/bin/gitflow-shFlags: line 1: shFlags/src/shflags: No such file or directory
C:\cygwin64\usr\local\bin\git-flow: line 85: DEFINE_boolean: command not found
C:\cygwin64\usr\local\bin\git-flow: line 88: FLAGS: command not found
fatal: 'flow' appears to be a git command, but we were not
able to execute it. Maybe git-flow is broken?
Run Code Online (Sandbox Code Playgroud)
我应该如何解决此问题的任何想法?
我正在尝试使用以下代码将整数列表写入字节文件:
let out_channel = open_out_bin "G:\\JVM\\OcamlTest2.class";;
let writeBytes out_channel finalBytes =
match finalBytes with
| [] -> close_out out_channel
| hd::tl -> output_byte out_channel hd; writeBytes out_channel tl;;
Run Code Online (Sandbox Code Playgroud)
我收到以下错误:
错误:未绑定的值writeBytes
我怎样才能解决这个问题?