2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2013-01-30 18:21:10 -06:00
|
|
|
let mut x = 0;
|
|
|
|
for 4096.times {
|
|
|
|
x += 1;
|
|
|
|
}
|
2013-03-06 15:58:02 -06:00
|
|
|
fail_unless!(x == 4096);
|
2013-01-30 18:21:10 -06:00
|
|
|
io::println(fmt!("x = %u", x));
|
2013-02-14 13:47:00 -06:00
|
|
|
}
|