# Multi-shell script.  Works under Bourne Shell, MPW Shell, zsh.
if : == x
then # Bourne Shell or zsh
  exec ocamlfind ocamlopt -package higlo,dynlink -bin-annot -g -safe-string -linkpkg -linkall `ocamlfind query -i-format higlo.__private__.higlo_main` "$@" higlo_main.cmxa
else #MPW Shell
  exec ocamlfind ocamlopt -package higlo,dynlink -bin-annot -g -safe-string -linkpkg -linkall `ocamlfind query -i-format higlo.__private__.higlo_main` {"parameters"} higlo_main.cmxa
End # uppercase E because "end" is a keyword in zsh
fi
