2013-07-30 20:46:40 -05:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-09-25 02:43:37 -05:00
|
|
|
pub fn main() {
|
2014-12-31 22:40:24 -06:00
|
|
|
let x = [1i; 100];
|
|
|
|
let y = [2i; 100];
|
2014-06-27 14:30:25 -05:00
|
|
|
let mut p = 0i;
|
|
|
|
let mut q = 0i;
|
2013-08-03 11:45:23 -05:00
|
|
|
for i in x.iter() {
|
|
|
|
for j in y.iter() {
|
2013-07-30 20:46:40 -05:00
|
|
|
p += *j;
|
|
|
|
}
|
|
|
|
q += *i + p;
|
|
|
|
}
|
|
|
|
assert!(q == 1010100);
|
|
|
|
}
|