roto 0.11.0

a statically-typed, compiled, embedded scripting language
Documentation
1
2
3
4
5
6
7
8
type T = ();

#[derive(Clone, Copy)]
#[repr(transparent)]
pub struct DynVal(pub *mut T);

unsafe impl Send for DynVal {}
unsafe impl Sync for DynVal {}