[Fwd: [Caml-list] Announce: Nativize 0.1]
dvanhorn <[email protected]>
| Newsgroups | gmane.org.ballistichelmet.lambda |
|---|---|
| Message-ID | <[email protected]> |
-------- Original Message -------- Subject: [Caml-list] Announce: Nativize 0.1 Date: Mon, 8 Mar 2004 01:11:28 -0800 From: Issac Trotts <[email protected]> To: [email protected] Nativize : Compile and run native functions from the toplevel. http://redwood.ucdavis.edu/~issac/software/nativize-0.1.tar.gz Introduction ============ It is useful to be able to easily run native code from the toplevel. Nativize makes this possible for functions whose arguments and return values can be serialized using the functions in OCaml's Marshal module. Example: running Ackermann's function in the toplevel ===================================================== # #require "nativize";; Loading /usr/lib/ocaml/3.07/nativize/nativize.cma # Nativize.nativize "Ack1" " let rec ack m n = if m = 0 then n + 1 else if n = 0 then ack (m - 1) 1 else ack (m - 1) (ack m (n - 1));; " [];; Please type #load "Ack1.cmo";; - : unit = () # #load "Ack1.cmo";; # assert(Ack1.ack 5 0 = 65533);; (* Wait about 10 seconds. *) - : unit = () # let rec ack m n = if m = 0 then n + 1 else if n = 0 then ack (m - 1) 1 else ack (m - 1) (ack m (n - 1));; # ack 5 0;; (* Wait a good while longer. *)