1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
extern crate libc;

pub mod array;
pub mod constant;
pub mod class;
pub mod fixnum;
pub mod gc;
pub mod float;
pub mod hash;
pub mod rproc;
pub mod string;
pub mod symbol;
pub mod thread;
pub mod typed_data;
pub mod types;
pub mod util;
pub mod value;
pub mod vm;

use types::Value;

extern "C" {
    pub static rb_cObject: Value;
}