comparison 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
comparison
equal deleted inserted replaced
47:ac4c0b4111ba 48:0a5c312de09a
1 extern structure Lib : sig
2 type t
3 val x : t
4 end
5
6 type t' = Lib.t
7 val x' : t' = Lib.x
8
9 structure Lib' = Lib
10
11 type t'' = Lib'.t
12 val x'' : t'' = Lib'.x