(1) You can get the newest version of Emacs from "\\bigbird\ntfiles\editors" in CS department,
or online at "ftp://ftp.gnu.org/gnu/windows/emacs/latest/".

(2) Save the 6 .el files in this zip file to ".../Emacs/site-lisp".

(3)Add the following lines to your .emacs file.

(setq auto-mode-alist
      (cons '("\\.ml[iylp]?$" . caml-mode) auto-mode-alist))
(autoload 'caml-mode "caml" "Major mode for editing Caml code." t)
(autoload 'run-caml "inf-caml" "Run an inferior Caml process." t)
(if window-system (require 'caml-font))

You will have a caml environment for your emacs that will make programming easier.


