apprentice/src/thread.rs

21 lines
155 B
Rust
Raw Normal View History

2016-03-18 16:17:01 -04:00
///
pub struct Thread
{
///
empty: i8
}
impl Thread
{
///
pub fn new() -> Thread
{
Thread
{
empty: 0
}
}
}