2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2013-01-30 18:21:10 -06:00
|
|
|
let mut x = 0;
|
2013-07-31 21:18:19 -05:00
|
|
|
do 4096.times {
|
2013-01-30 18:21:10 -06:00
|
|
|
x += 1;
|
|
|
|
}
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(x, 4096);
|
2013-07-22 11:04:51 -05:00
|
|
|
printfln!("x = %u", x);
|
2013-02-14 13:47:00 -06:00
|
|
|
}
|