view tests/ffi.lac @ 48:0a5c312de09a

Start of FFI
author Adam Chlipala <adamc@hcoop.net>
date Sun, 22 Jun 2008 09:27:29 -0400
parents
children 874e877d2c51
line wrap: on
line source
extern structure Lib : sig
        type t
        val x : t
end

type t' = Lib.t
val x' : t' = Lib.x

structure Lib' = Lib

type t'' = Lib'.t
val x'' : t'' = Lib'.x