Syntax highlighting?

I had a look, and the site did not have OCaml, Haskell or Coq in the default highlighted languages list. I removed Windows INI files and a few other probably irrelevant ones in order to make room for these.

Testing…

module Log_entry = struct
    type t =
      { session_id: string;
        time: Time.t;
        important: bool;
        message: string;
      }
  end
  module Heartbeat = struct
    type t =
      { session_id: string;
        time: Time.t;
        status_message: string;
      }
  end
  module Logon = struct
    type t =
      { session_id: string;
        time: Time.t;
        user: string;
        credentials: string;
      }
  end;;
let test = "Hello!" ;;
3 Likes