If only there was a way to convert theorem prover queries into amusing court cases and have children of all ages help us find contradictions.
Misc:

http://objection.mrdictionary.net/index.php
+ the whole slew of youtube videos (e.g., this, this')
(defun ocaml-lookup-module ()
(interactive) ;; to run from keybinding
(let ((sym (thing-at-point 'symbol)))
(if sym
(shell-command
(concat "firefox http://caml.inria.fr/pub/docs/manual-ocaml/libref/"
(concat sym ".html")))
)))
(add-hook 'tuareg-mode-hook
(lambda ()
(define-key tuareg-mode-map (kbd "M-?") 'ocaml-lookup-module)))