pr47 0.1.4-CHARLIE

A semi-experimental programming language. Still working in progress.
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(feature = "async")]
macro_rules! get_vm {
    ($thread:expr) => { $thread.vm.get_shared_data_mut() }
}

#[cfg(not(feature = "async"))]
macro_rules! get_vm {
    ($thread:expr) => { &mut $thread.vm }
}