Warning: this is an htmlized version!
The original is here, and
the conversion rules are here.
(*
 * This file:
 *   http://anggtwu.net/OCAML/test_load.ml.html
 *   http://anggtwu.net/OCAML/test_load.ml
 *          (find-angg "OCAML/test_load.ml")
 * Author: Eduardo Ochs <eduardoochs@gmail.com>
 * (find-es "ocaml" "load")
*)

let f a b = 10 * a + b

(*
* (eepitch-ocaml)
* (eepitch-kill)
* (eepitch-ocaml)
#use "test_load.ml";;
f 2 3;;

* (find-3EE '(eepitch-shell) '(eepitch-ocaml))
* (find-3ee '(eepitch-shell) '(eepitch-ocaml))
* (eepitch-shell)
ocamlc -c test_load.ml

* (eepitch-ocaml)
#load "test_load.cmo";;
open Test_load;;
f 2 3;;

*)