1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
static TAPE_WIDTH: uint = 30000;

pub struct Context {
    pub idx: uint,
    // FIXME
    pub tape: [u8, ..30000],
}

impl Context {
    pub fn new() -> Context {
        Context {
            idx : 0,
            // FIXME
            tape: [0, ..30000],
        }
    }
}