[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Ken Wakita <Ken.Wakita@i...> |
| Subject: | Marshal module. |
Hi,
Using the Marshal module from the ocaml interpreter, I found its strange
behavior. Though Marshal.from_string is registered in the Marshal.mli
interface file, the interpreter complains for "Reference to undefined
global". Folloing is my session
Last login: Mon Dec 1 14:09:39 from sassas-gw2
Sun Microsystems Inc. SunOS 5.5.1 Generic May 1996
k0ua> ocaml
Objective Caml version 1.06
# Marshal.to_string;;
- : 'a -> Marshal.extern_flags list -> string = <fun>
# Marshal.from_string;;
Reference to undefined global `Marshal'
#
Ken