# Multi-shell script.  Works under Bourne Shell, MPW Shell, zsh.
if : == x
then # Bourne Shell or zsh
  exec ocamlfind ocamlopt -package stog -linkpkg -linkall "$@" stog_main.cmx
else #MPW Shell
  exec ocamlfind ocamlopt -package stog -linkpkg -linkall {"parameters"} stog_main.cmx
End # uppercase E because "end" is a keyword in zsh
fi
